Tagged: menu
Hello,
I would like to remove the navigator links (Home, Dream Collection) from all pages on this site: http://dreamcollection.fanatikbike.com/
How would I go about doing this? Thanks!
Jadyn
Hey JadynWelch01!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
nav.main_menu { display: none !important; }
Best regards,
Yigit
I also have two more requests: In the breadcrumbs area, I would like “Home” to say “Build Gallery” instead.
And for the portfolio preview left/right arrows, is there a way to make those a bit more prominent? Perhaps the image preview could be auto-expanded so it’s easier to see?
Thanks!
Hi!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
function avia_change_home_breadcrumb($args){
$args['show_home'] = 'Build Gallery';
return $args;
}
Cheers!
Yigit
Thanks for the help Yigit! Any input on my last request?
And for the portfolio preview left/right arrows, is there a way to make those a bit more prominent? Perhaps the image preview could be auto-expanded so it’s easier to see?
Hi!
I’d suggest making the arrows darker, try adding this to Quick CSS:
#top .avia-post-nav {
background: gray;
}
Regards,
Josue