Customizing SMF > Theme Site Themes
Ant's Curve Variants
Kimmie:
--- Quote from: Antechinus on September 15, 2011, 04:12:41 AM ---Clear your browser cache.
--- End quote ---
thats done several times a day already on all my browsers and I already knew to try that but thanks. It seems to be slowly working itself out for everyone so I guess eventually it will make it to me. Not a big fan of that theme, so I wont even be using it. I will just monitor the complaints on it I get, for a week or so (and yes they were already instructed to do the same) and if it wont fully resolve itself for the ones that want to use it, I will just remove it and find them another one. Or just break down and make one myself as I used to do it all the time. I always made my own themes before but since I have a real life, and work 6 days a week now, its not a top priority.
Thelost:
Excellent Pack Ant! Really appreciate the awesome themes.
Just 1 question, any idea how to enlarge only the main_menu objects, i realize making them larger is a multiple step process. I've used photoshop to double the size of the menu_gfx.png images to 40px tall instead of 20px tall and that is the only change i made to that file. But the text size is whats really giving me a bit of Trouble, i tried adding font: 2em; to #main_menu but it simply doesnt do anything =/.
I've done some generalized reading on the net on how to do this but im just missing something. The actual theme im using is the Prince of Darkness theme. I dont have a specific problem per-se as i've not managed to get anywhere at all other than making the adjustments to the menu_gfx.png file, all my tinkering attempts thus far have either had no effect or a completely wrong effect and have been reverted.
Antechinus:
This is what sets the font-size. The last line of code just above the comment.
--- Code: ---.dropmenu a span
{
display: block;
padding: 0 0 0 5px;
font-size: 0.9em;
}
/* the background's first level only */
--- End code ---
Thelost:
Great Ant Thanks! This does exactly what i wanted it to do, last question, i'd like only to main menu to have the enlarged text, is there a way to make the drop menus the regular size as well as the admin menus and their drop menus the same old size? I'm going to start systematically adding font: 0.9em; to each element to see if i can figure it out on my own but thought i might ask just in case this is a bad idea =D
Thanks for all your awesome effort and help Antechinus! you are an asset to SMF!
Antechinus:
Yeah that's easy. Use this just to target the main menu.
--- Code: ---.dropmenu a span
{
display: block;
padding: 0 0 0 5px;
font-size: 0.9em;
}
#main_menu .dropmenu a span
{
display: block;
padding: 0 0 0 5px;
font-size: 2em;
}
/* the background's first level only */
--- End code ---
Then change this:
--- Code: ---.dropmenu li li a span
{
display: block;
padding: 8px;
}
--- End code ---
To this:
--- Code: ---.dropmenu li li a span, #main_menu .dropmenu li li a span
{
display: block;
padding: 8px;
font-size: 0.9em;
}
--- End code ---
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version