I would like the banner on my theme to only be displayed on the front page, all other pages like photos or profiles I would not like it displayed at the top, how do I do this?
All help appreciated!
I would like the banner on my theme to only be displayed on the front page, all other pages like photos or profiles I would not like it displayed at the top, how do I do this?
All help appreciated!
And add this custom css:
body:not(.controllername) .ow_header_pic{
display:none;
}
That plugin adds the controller name as a class into the body tag, just check the class name that was added into the body html tag and replace "controllername" for the class that was added, all other pages that do not have that class in the will hide the header photo.
Senior Developer.
body:not(.base_index_page) .ow_header_pic{ display:none; }
Senior Developer.
I think the index page class is base_index_page, so add this as custom css and see if it worksWith or without the plugin?
body:not(.base_index_page) .ow_header_pic{ display:none; }
Senior Developer.
The plugin adds the class "base_index_page" to the body tag.
Senior Developer.
Thank you for the support so far!