-
-
I have two style issues – I have a feeling I’m missing something, but I feel like I’ve tried everything.
1) the top navigation bar is supposed to have a thin, bottom border. It has a shadow, which it’s supposed to have, but some pages have the thin bottom border, and some pages don’t. I added the bottom border (1, solid, #ebebeb) in the General Header options, but like I said, some pages have it, some don’t. (Next post will have links for examples.)
2) I’m trying to make the main background color for all pages (excluding the navigation bar) #f8f8f8 (instead of just plain white)…and again, some pages have it…some don’t.
What on earth am I doing wrong?!?
Thanks!
-
-
Hello,
Sorry for the late reply.
Just like you wrote, the menu doe snot have a bottom border, only the shadow that does show up in all pages. The this line you are referring too is a feature of the content rows. So in some pages the row containing content does have a top and bottom border, while in some pages (like portfolio) there are no rows, just the content div and that does not have any border.
Add this code into your custom css box:.row-dynamic-el.section-style:first-child { border-top: 1px solid #ebebeb; }
To have it for every page.
The background color is set as #f8f8f8 but another css code is overwriting it. To make it take priority, add this code into your custom css box:#content { background-color: #f8f8f8 !important; }
Let us know.
Best regards!
-
-
You must be logged in to reply to this topic.