New code to fix Archive page

I got this code to fix my archive page but it still not looking the way it should

The code I just entered

.hentry {
clear: both !important;
}

What it look like: https://blogbymichelle.com/category/blogging/

What it should look like : https://blogbymichelle.com/

Hi,

To make it look the same, you can add the code below in Theme Options > CSS

.archive.category .x-header-landmark,
.archive.category .x-breadcrumb-wrap {
   display:none;
}

Hope that helps

I already had the correct code and after the update 2 days ago it now looks like that

None of these codes work

.hentry {
clear: both !important;
}

.archive.category .x-header-landmark,
.archive.category .x-breadcrumb-wrap {
display:none;
}

Hi,

Sorry I misunderstood what the issue is.

Please remove this code

.archive.category .x-header-landmark,
.archive.category .x-breadcrumb-wrap {
display:none;
}

Then change this code

.hentry {
clear: both !important;
}

to this

.hentry {
    overflow:hidden;
    clear: both !important;
}

Hope that helps

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.