-
AuthorPosts
-
November 5, 2014 at 9:09 am #346399
Hi,
How to disable this preloader?
/enfold/images/layout/preload-dark-bigThanks!
November 5, 2014 at 12:15 pm #346455Hi luxubux!
Try adding this code to Quick CSS or custom.css
.avia_loading_icon{ background: transparent; }
Regards,
ArvishNovember 8, 2014 at 6:18 am #348086Perfect 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);November 8, 2014 at 6:28 am #348087Hi!
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!
ArvishNovember 8, 2014 at 7:08 am #348089This reply has been marked as private.November 9, 2014 at 9:46 pm #348454Hey!
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,
AndyNovember 9, 2014 at 9:52 pm #348457Hey!
Try adding this code to the Quick CSS:
.title_container .container { padding-left: 0; margin-left: 30px; }
Cheers!
JosueNovember 9, 2014 at 11:37 pm #348523Hi 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 leftTo be sure, i want the breadcrumbs in exact same location as default, just replaced with the one from yoast.
Thanks!!
November 10, 2014 at 2:57 am #348631Also, Andy, ’</div> is not appropriate to use here as it messes up the whole sidebar….. (puts it under before the footer)
November 10, 2014 at 9:39 pm #349048Hi!
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 10 years ago by Elliott.
-
AuthorPosts
- You must be logged in to reply to this topic.