Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #346399

    Hi,
    How to disable this preloader?
    /enfold/images/layout/preload-dark-big

    Thanks!

    #346455

    Hi luxubux!

    Try adding this code to Quick CSS or custom.css

    .avia_loading_icon{
    background: transparent;
    }

    Regards,
    Arvish

    #348086

    Perfect Arvish! Thanks that worked.
    May i ask another favor? I included this in functions-enfold.php but the breadcrumbs now show up on the left under the title and create a bunch of space between the content of the page and the breadcrumb. Any way to get it back to the original position, same line as title?
    if($breadcrumb) $additions .= yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</p>’, false);

    #348087

    Hi!

    I believe you can remove the space with CSS but to be able to advise any further, I will require a link to the page.

    Cheers!
    Arvish

    #348089
    This reply has been marked as private.
    #348454

    Hey!

    try to replace with this in functions.php:

    if($breadcrumb) $additions .= yoast_breadcrumb(‘<div id=”breadcrumbs”>’,’</div>’, false);
    

    Than you should be able to style breadcrumbs using for example this in Quick CSS:

    .title_container .breadcrumb {
    top: 40px;
    float: right;
    right: 50px;
    }
    

    Try to play around with the number until you find the right position for your breadcrumbs.

    Best regards,
    Andy

    #348457

    Hey!

    Try adding this code to the Quick CSS:

    .title_container .container {
        padding-left: 0;
        margin-left: 30px;
    }

    Cheers! 
    Josue

    #348523

    Hi Andy and Josue,
    Andy, that did not do anything at all. To be sure i did:
    functions-enfold.php
    replaced standard with: if($breadcrumb) $additions .= yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</div>’, false);
    functions.php
    added : if($breadcrumb) $additions .= yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</div>’, false);

    Josue,
    That moves the breadcrumbs more to the left

    To be sure, i want the breadcrumbs in exact same location as default, just replaced with the one from yoast.

    Thanks!!

    #348631

    Also, Andy, ’</div> is not appropriate to use here as it messes up the whole sidebar….. (puts it under before the footer)

    #349048

    Hi!

    The default markup is a div so I would try Andy’s code one more time.

    if($breadcrumb) $additions .= yoast_breadcrumb('<div class="breadcrumb breadcrumbs avia-breadcrumbs">','</div>', false);
    

    Or if you just want to force it in the top right hand corner with your current code then you could use this CSS.

    #breadcrumbs {
        position: absolute !important;
        top: 10px !important;
        right: 50px !important;
    }

    I couldn’t find where to download the plugin to test with though. It looks like he added the feature to his WordPress SEO plugin, https://yoast.com/wordpress/plugins/breadcrumbs/.

    Best regards,
    Elliott

    • This reply was modified 9 years, 5 months ago by Elliott.
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.