Jump to content
Sign in to follow this  
somagoods

Dropdown Menu - Child Page Title

Recommended Posts

basmati

hello, in the child theme (platform base) use a padding-left: 0.6em - like this:

#subnav_row #subnav {
	    margin: 0 0 0 0;
	    padding-left: 0.6em;
	}
in the base.css. simply put this piece of css above into the base.css. If you don't use the base theme - change the css in the theme.css - within the folder platformbase. i recommend the first version. style the links of the subnavi with a change of color - paste this css into the base.css and change the color:
#subnav_row li a {
	    border: medium none;
	    color: #888888;
	    display: block;
	    padding: 8px 10px;
	    text-shadow: 0 0.5px 0.5px #FFFFFF;
	}
the current page item has to be changed here within the base.css, paste the css styles into the base.css and change the color to whatever you like:
a, #subnav_row li.current_page_item a, #subnav_row li a:hover, #grandchildnav .current_page_item > a, .branding h1 a:hover, .post-comments a:hover, .bbcrumb a:hover, #feature_slider .fcontent.fstyle-lightbg a, #feature_slider .fcontent.fstyle-nobg a {
	    color: #B71D3A;
	}

Share this post


Link to post
Share on other sites
bryan-hadaway

Karma point to Peter. Thanks for helping out. Thanks, Bryan

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×