Turn off page titles in X theme Renew stack

I am using the Renew stack in X-themes for a site under development - http://898.6bc.myftpupload.com/.

I’ve searched the topic and don’t see the general settings options that have worked for others. Ideally I would like to remove the page title and move the breadcrumbs to be left aligned.

Thank you for your help.

Try to add this to global css (appearence/customize/global css)

.x-landmark { display: none; }
.x-landmark-breadcrumbs-wrap { display: block; }
.x-breadcrumbs { text-align: left; }

Thank you!

Hey There,

It’s good to know that the suggested css works out for you!

@Georgich:
Thanks for chiming in!

1 Like

I noticed that the page titles are still on when I view the site on my phone. Is there a mobile stylesheet too?

Hi there,

Please add it in X’s global custom CSS rather than another place for custom CSS. OR, simply add !important.

.x-landmark { display: none !important; }
.x-landmark-breadcrumbs-wrap { display: block !important; }
.x-breadcrumbs { text-align: left !important; }

Thanks!

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