Hi all,
I need help with the simple theme. I would like to be able to accomplish the following:
-
hide the “Manage My Account” at top of page. It was added on the side navigation. So its no longer needed at the top.
-
On the side navigation, id like to center it, make the background black, the text and spacers white. Is there a simple way of doing this? Also, if the round the corner on each button, that would be great though not necessary.
Thanks so much!
website is www.PennsylvaniaParks.org
- You could try add this to the bottom of the theme.scss file and clicking save:
#customer_login_link {
display: none;
}
- Add this to the bottom of the theme.scss file and click save:
.site-nav ul, .site-footer__menu {
text-align: center;
background: #000000;
}
.site-nav__item {
border-top: 1px solid #ffffff;
}
.site-nav__link {
color: #ffffff;
}
Hope this helps!
This worked perfectly! Thanks so much!!
One last question. I changed the navigation on my page. Any idea how to make one of the buttons green? I want the “Join Today” button green but the remaining ones to remain black. It would be nice to make that one button stick out from the rest since it will be the most used one. I hope that makes sense.
Thanks again in advance.