Archived topic
Footer Bar with menu css help
4 replies · Started by Daren on June 24, 2018
I have added a right aligned footer bar menu and would like to style the links basically the same style colors as the author name works at the posts bottom ( #666666; to #1e73be; ).
My code follows:
<footer class="site-info" itemtype="https://schema.org/WPFooter" itemscope="itemscope">
<div class="inside-site-info grid-container grid-parent">
<div class="footer-bar">
<aside id="nav_menu-4" class="widget inner-padding widget_nav_menu">
<div class="menu-sub-container">
<ul id="menu-sub" class="menu">
<li id="menu-item-424" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-424">
<a href="https://dotmycom.com/privacy-policy/">Privacy Policy</a>
</li>
</ul>
</div>
</aside>
</div>
<div class="copyright-bar">© 2018 • dotmycom.com</div>
</div>
</footer>
What classes do I need to edit to achieve this?
Hi there,
Try this CSS:
.site-info a, .site-info a:visited {
color: #000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps.
Scratch the above.
The option should be in Customizer > Colors > Footer.
Let me know :)
Great, Thanks works fine.
No problem :)