Tagged: accordions, breadcrumb
Hi,
First I wanted to thank you for this nice theme. It works great and looks very professionnal !
I am willing to put a phone number in lieu of the breadcrumb. I know the phone number is supposed to be at the top in the social header, but it would look awkward on my site, so I would prefer to do it my own way. I just don’t really know what to change.
I also had a feature request : could it be possible to make accordions with several levels ? (menu, submenu, etc…)
Thanks :)
Hi,
Can you post the link to your website please?
Regards,
Josue
Hello!
You can request features here https://kriesi.at/support/topic/enfold-feature-requests/
In your WordPress theme directory please go to Enfold folder and open Functions-enfold.php file and find following code in line 302
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
and change it to
if($breadcrumb) $additions .= "<span class='breadcrumb-title'>Tel:2312312312</span>";
Cheers!
Yigit
Hi,
Try adding this code to the Quick CSS area in the Theme options page:
.title_container:after {
content: "2566654";
position: absolute;
right: 50px;
top: 15px;
}
Change “2566654” for the desired number, result:
Regards,
Josue
Thanks a lot to you both ! ;)
Josue’s way of doing it (via CSS) works better as Yigit’s solution adds a line break. Besides, Quick CSS is preserved when the theme is updated.
Now it works perfectly :)