Simple Machines Community Forum
Customizing SMF => Graphics and Templates => Topic started by: Secureas on November 21, 2017, 10:17:25 PM
-
I have been looking through the files in the Temiz theme and I am unable to locate where to change the icons on the navigation buttons at the top of the theme. Any help is appreciated.
-
Your best bet would be to ask this on the support topic for this theme so the the author or those that are using it can help you.
Here is a link to the support topic- https://www.simplemachines.org/community/index.php?topic=552667.0
-
Hello.
Please can you tell me how to edit / change the icons in the main menu. When I add a menu item it displays a question mark icon and I would like to change this.
Thank you.
Hi
Menu icon all img : /images/generic_icons.png
index.css:738
.generic_icons.administration, .generic_icons.home {
background-position: -135px -187px;
}
You need test : -135px replace : -240px and bla..blaa...
And New Menu-icon
Sources/subs.php
'work' => array(
'title' => 'work',
'href' => $scripturl . '?action=work',
'show' => true,
'sub_buttons' => array(
),
),
and index.css add
.generic_icons.administration, .generic_icons.work {
background-position: -161px -239px;
}
And Snrj started topic : http://smf.konusal.com/index.php?topic=1592.0 Translate Google :( Sry Bro
hello
browser f12 button name find
sample
button_forum
cut
forum
index.css bottom paste
generic_icons.forum{background-position: -161px -239px;}
Play with positions
Topic http://smf.konusal.com/index.php?topic=1572.msg8734#msg8734
-
Thank you for your response, I really appreciate it and the SMF community very much.