Hi,
i use transparent header on several sites in my page. is it possible to declare the colours of the navigation? Cause sometime one pictures has a dark background and sometimes a white background.
regards
Hi xxtita!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and change page ID to match your page’s ID
.page-id-2890 #wrap_all .av_header_transparency .main_menu ul:first-child > li > a {
color: orange!important;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
ok, thanks – this is cool for the navigation. Is there also an option for the logo?
So the logo appears in original color and not the “white” transparency-style.
Or is it possible to have an transparent header without all alternative colors and no background?
Hi!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(is_page(9) )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
Regards,
Yigit
works, thank you for all your support – every day.