By Grith Hodal on Monday, 04 September 2017
Posted in General Issues
Replies 3
Likes 0
Views 602
Votes 0
Hi
Is it possible to modify the toolbar?
I have removed a lot of options, and don't think it looks nice with the remaining stuff in two lines. Also I want to replace the text 'Hjem' (Home) with an icon. See img...
Hey Grith,

Yep, you should be able to modify this by modifying the theme file in /components/com_easyblog/themes/wireframe/toolbar/default.php

To display the icon instead of text, you can add the block of css codes into your template's css file.

[gist]
body #eb .eb-navbar__footer-link i {
display: inline-block;
}

body #eb .eb-navbar__footer-link span {
display: none;
}
[/gist]
·
Monday, 04 September 2017 18:03
·
0 Likes
·
0 Votes
·
0 Comments
·
But will it not be overwritten with the next update?
·
Monday, 04 September 2017 18:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Grith,

Yes, and to be on the safe side, you can create a template override in

/templates/JOOMLA_TEMPLATE/html/com_easyblog/toolbar/default.php
·
Monday, 04 September 2017 20:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post