Customizing SMF > Theme Site Themes
OverView | OverViewLight
trenchteam:
Definitely a good looking theme. Would like more color variations however. Black on Black, Grey, Dark Blue, Green.... You know?? ;D ;D
dico:
--- Quote from: Bikken on October 07, 2007, 12:32:40 PM ---Thanks :)
--- Quote from: dico on October 06, 2007, 07:35:47 PM ---great theme...one question
where would i go to change the bold text of any pinned topics? its hard to seperate whats pinned and what isnt
--- End quote ---
Change the colors of standard links. In style.css :
--- Code: ---/* Normal, standard links. */
a:link
{
color: #808080;
text-decoration: none;
}
a:visited
{
color: #757575;
text-decoration: none;
}
a:hover
{
color: #ccc;
}
--- End code ---
--- End quote ---
thnx but that'll affect the regular topic links too
i want to just target the pinned topic links
Roger Rabbit:
can we have the .psd file for the logo please.? thanks in advance...
Bikken:
--- Quote from: dico on October 07, 2007, 09:56:19 PM ---
--- Quote from: Bikken on October 07, 2007, 12:32:40 PM ---Thanks :)
--- Quote from: dico on October 06, 2007, 07:35:47 PM ---great theme...one question
where would i go to change the bold text of any pinned topics? its hard to seperate whats pinned and what isnt
--- End quote ---
Change the colors of standard links. In style.css :
--- Code: ---/* Normal, standard links. */
a:link
{
color: #808080;
text-decoration: none;
}
a:visited
{
color: #757575;
text-decoration: none;
}
a:hover
{
color: #ccc;
}
--- End code ---
--- End quote ---
thnx but that'll affect the regular topic links too
i want to just target the pinned topic links
--- End quote ---
What you can do is upload a copy of MessageIndex.template file from your default theme in OverView folder. Then open the file and search for this (around line 214):
--- Code: --- </td>
<td class="windowbg' , !empty($settings['seperate_sticky_lock']) && $topic['is_sticky'] ? '3' : '' , '" valign="middle" ', (!empty($topic['quick_mod']['remove']) ? 'id="topic_' . $topic['first_post']['id'] . '" onmouseout="mouse_on_div = 0;" onmouseover="mouse_on_div = 1;" ondblclick="modify_topic(\'' . $topic['id'] . '\', \'' . $topic['first_post']['id'] . '\', \'' . $context['session_id'] . '\');"' : ''), '>';
--- End code ---
and replace with (or just change the "3" to "4"):
--- Code: --- </td>
<td class="windowbg' , !empty($settings['seperate_sticky_lock']) && $topic['is_sticky'] ? '4' : '' , '" valign="middle" ', (!empty($topic['quick_mod']['remove']) ? 'id="topic_' . $topic['first_post']['id'] . '" onmouseout="mouse_on_div = 0;" onmouseover="mouse_on_div = 1;" ondblclick="modify_topic(\'' . $topic['id'] . '\', \'' . $topic['first_post']['id'] . '\', \'' . $context['session_id'] . '\');"' : ''), '>';
--- End code ---
Then add this somewhere in your style.css:
--- Code: ---.windowbg4
{
padding: 5px;
background-color: yellow;
}
.windowbg4 a:link
{
color: red;
}
--- End code ---
Change colors to whatever you like.
Bikken:
--- Quote from: Roger Rabbit on October 11, 2007, 03:58:45 AM ---can we have the .psd file for the logo please.? thanks in advance...
--- End quote ---
I uploaded the logo.zip to the theme downloads on this site.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version