WordPress Free Platform Template Theme CSS Tweaks
chris : January 9, 2012 7:10 am : Blog, Open Source, Technology Tips, Website Development, WordpressThe following is a collection of css code snippets that can be added to the styles.css file in the Platform theme template child theme created in the blog article
How do I change the menu colors?
To change the primary nav background color
<br />
/* CSS FOR NAV BACKGROUND COLOR */<br />
#primary-nav { background-color: #FF0000; }</p>
<p>/* THIS HIDES THE BORDER AT THE BOTTOM */<br />
#nav_row.main_nav, ul.sf-menu ul li { border-bottom: 0 none; }</p>
<p>/* THIS MAKES THE li BACKGROUNDS TRANSPARENT */<br />
.sf-menu li, .main_nav ul.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active { background-color: transparent; }

