Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: Secureas on November 21, 2017, 10:17:25 PM

Title: Changing Navigation Tab Icons in Temiz Theme?
Post 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.
Title: Re: Changing Navigation Tab Icons in Temiz Theme?
Post by: br360 on November 21, 2017, 10:24:10 PM
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
Title: Re: Changing Navigation Tab Icons in Temiz Theme?
Post by: Snrj on November 22, 2017, 06:03:21 AM
Quote from: CeeMoo on September 24, 2017, 02:53:26 PM
Quote from: Ian M on September 24, 2017, 02:25:51 PM
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
Quote from: snrj on September 24, 2017, 03:06:18 PM
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
Title: Re: Changing Navigation Tab Icons in Temiz Theme?
Post by: Secureas on November 23, 2017, 09:39:54 AM
Thank you for your response, I really appreciate it and the SMF community very much.