Tagged: breadcrumb
and the page title too
i tried few quick css codes but it didnt work
those dont work
.title_container {
display: none;
}
.home div#main {
padding-top: 117px!important;
}
Hey andr3y,
You can select to not show breadcrumbs in the Layout menu on the right hand side of the edit screen, please try that out.
Best regards,
Rikard
Hi Rikard,
I would just like to remove the words “You are here:” but leave the breadcrumb
thanks
Tina
Hi Tina,
Please add following code to bottom of Functions.php file in Appearance > Editor
add_filter('avia_breadcrumbs_args', 'avia_remove_you_are_here_breadcrumb', 10, 1);
function avia_remove_you_are_here_breadcrumb($args){
$args['before'] = "";
return $args;
}
Best regards,
Yigit
Thank you Yigit! That worked well!
Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)
Best regards,
Yigit