Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #418209

    Hi there,

    I’ve been trying to remove the navigation arrows between my blog posts, to no avail. I’ve tried the following CSS, but it has not worked:

    .avia-content-slider .avia-slideshow-arrows.avia-slideshow-controls {
    display: none;
    }

    Could you please assist?

    Many thanks,

    Elindsay

    #418257

    Hey Elindsay!

    Please add following code to Quick CSS

    #top .avia-post-nav { display: none !important; }

    Best regards,
    Yigit

    #418283

    Hi Yigit,

    That didn’t work. I have also added a feature image to a second post, and the image is now displaying inside the navigation bar.

    http://www.highcountryfarm.com.au/whats-happening-to-australias-garlic-industry/

    Thanks,

    Elindsay

    #418448

    Hey!

    Please try the following instead:

    #top .avia-post-nav{
    display:none !important;
    }

    Regards,
    Rikard

    #418888

    Hi,

    That didn’t work either…

    Any other ideas?

    Thanks,

    Elindsay

    #419141

    Hi!

    Are you sure you have added the code we gave you to Quick CSS under Enfold–>General Styling? I can’t see the code being applied anywhere on your site.

    Best regards,
    Rikard

    #420147

    Hi Rikard,

    I placed the code at the top of all of the existing code that I had in the Quick CSS, and this worked.

    Before, I placed it at the bottom, and this did not work. So if anyone else has this issue, if you already have code in your Quick CSS, try placing the code at the top of your Quick CSS code, rather than at the bottom.

    Many thanks,

    Elindsay

    #420507

    Hi!

    Glad you figured it out Elindsay! Please review your custom CSS code. It should work at the bottom as well. If it is not, that means you have some issues with your custom CSS code. If you post the content of your Quick CSS here using pastebin.com we can help you as well

    Best regards,
    Yigit

    #420881

    Hi Yigit,

    Here is my custom CSS code:

    #top .avia-post-nav{
    display:none !important;
    }

    .logo img {
    padding-top: 15px;
    padding-bottom: 15px;
    width:400px
    centre
    }

    /* Font style in Menu */
    .avia-menu-text {
    font-size: 14px;
    }

    span.toggle_icon {
    width: 15px !important;

    Many thanks,

    Elindsay

    #420890

    Hi!

    Please change it to following

    #top .avia-post-nav{
    display:none !important;
    }
    
    .logo img {
    padding-top: 15px;
    padding-bottom: 15px;
    width:400px;
    }
    
    /* Font style in Menu */
    .avia-menu-text {
    font-size: 14px;
    }
    
    span.toggle_icon {
    width: 15px !important;
    }

    Best regards,
    Yigit

    #420915

    Hi Yigit,

    Thanks for this – however, the code has stretched my logo in the header. Could you please fix this?

    Thanks,

    Elindsay

    #421372

    Hey!

    Please create a temporary admin login and post it here privately

    Cheers!
    Yigit

    #861812

    Hi,

    I just can’t make this work.

    I have added the code

    #top .avia-post-nav {
    display:none;
    }

    and

    #top .avia-post-nav {
    display:none !important;
    }

    both in Quick CSS under Enfold–>General Styling and in style.css, in my childtheme (which usually does the trick). I have also tried to add the style by other tags but all in vain. If I add to diplay:none to the style tag #top .avia-post-nav in the browser (Chrome) when I “inspect element”, it goes away. But I can’t make it go away via any css it seems. I really don’t know what to do.

    Below are two exemples of pages where I’d like to remove the next-previous links.

    I am thankfull for all help I can get.

    Cheers,
    Rikard

    #861850

    Hello again,

    I cleared all the cashes on the site and that did the trick! Please disregard my former post. Is there a way to delete it altogether?

    Cheer,
    Rikard

    #861872

    Hi,

    You can alternatively add following code to bottom of Functions.php file in Appearance > Editor

    add_filter('avia_post_nav_entries','avia_remove_post_nav', 10, 1);
    function avia_remove_post_nav()
    {
    return false;
    }

    If that too does not help, please start a new thread under Enfold sub forum and attach temporary admin logins in private content field so we can look into it. If you post your credentials here, they will be visible to creator of this thread as well.

    Best regards,
    Yigit

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Remove post and product navigation arrows’ is closed to new replies.