Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
How do I place a horizontal rule above and below the the navigation header. I was able to do this in the CE4, but can not figure out where this setting is in Backlight
Offline
do you mean a border? I think this needs to be done with custom css.
you could try this in your custom css:
ul.primary-menu {
border-top: 1px solid red;
border-bottom: 1px solid red;
}
change color and thickness as needed.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I have never done this before. Any links with suggestions on how to incorporate custom css into a Backlight template?
Offline
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Works nicely, now if there was some way to get the two borders to extend the full browser window width?
Offline
Then try creating a page template with Negative Space disabled. This should allow the nav menu container to span the width of the page. Then try this css:
nav {
border-top: 1px solid red;
border-bottom: 1px solid red;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
as usual, you are great help,
This does what I wanted, thanks
Offline