Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #329198

    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

    #329200

    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

    #329224

    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!

    #329228

    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

    #329369

    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?

    #330040

    Hi!

    I’d suggest making the arrows darker, try adding this to Quick CSS:

    #top .avia-post-nav {
        background: gray;
    }

    Regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.