Tagged: entypo, responsive
Hi,
I would like to display an entypo icon (always the same) right before every page’s main title (like here: http://www.vla.nu/contact). This means I have to have it set right before the h1.main-title.
<h1 class="main-title entry-title"></h1>
I want to use the list icon: &# 9776;
Moreover, I want the breadcrumbs and main title to be displayed on top of each other block-wise in responsive view (also like http://www.vla.nu/contact) – I just want the title bar to look just the same. Can you give me a hint on how to edit the css on this one? Help would be very much appreciated!!
Kind regards,
Dick
Hi dick1980!
Add this on Quick CSS or custom.css:
.title_container .main-title:before {
content: '\e86d';
font-family: 'entypo-fontello';
padding-right: 10px;
}
Best regards,
Ismael
Hey!
It seems like backslash was removed from following line
content: '\e86d';
Please check that \ is there
Cheers!
Yigit
It’s in the code, but no effect. It seems to get stripped from the Quick CSS…
Regards,
Dick
Hey!
Can you try following
.title_container .main-title:before {
content: '\\e86d';
font-family: 'entypo-fontello';
padding-right: 10px;
}
Regards,
Yigit
Just wanted to let you know: there’s some buggy behavior about this. Everytime I enter the double backslash, save it, then navigate away from the settings page and come back, it is replaced with one slash. Then after saving again, it is displayed wrong again (with only one backslash, thus showing the number instead of the icon).
Kind regards,
Dick