Removing element from blog template

Hi,

I’d like to change the blog homepage and blog posts’ layout. I want to remove one element:

How can I do that?

Thanks,
Szymon

Hi There,

Thanks for writing in!

Please go to X-> Theme option -> header in the MISCELLANEOUS section please disable the BReadcrumb.

If that doesn’t help please add this CSS to your X-> theme option -> CSS

.x-header-landmark .x-container {
display:none !important;
}

Hope this works!

1 Like

Thank you for a quick response.

It did work, but not exactly what I wanted.

I’d like to remove or at least decrease the size of this space:

Thank you,
Szymon

Hi Szymon,

That space is suppose to display your blog title and breadcrumbs like here

There is currently no settings to remove the title so you will need to do it using Custom CSS.
You can add the code below in Theme Options > CSS

.x-header-landmark {
   display:none;
}

Thanks

1 Like

Thanks! It’s working.

Glad it works now, and you’re most welcome!

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