hi
is there anyway i can increase the size of the subforum font
i have looked but cant see anything anywere to change the font size
any ideas please let me know
is there anyway i can increase the size of the subforum font
i have looked but cant see anything anywere to change the font size
any ideas please let me know
yes. It will require you to just a few lines of code in 2 files.
First, Open up;
public_html/themes/Your_Theme/style/style.css
FIND:
The full code should looks something like this:
But, with each theme being different, I can't guarantee that it will be exact. But the next step will go after the full line, not just the first part I showed.
NEW LINE AFTER ADD:
Set the font size that you want there.
SAVE & CLOSE
Open:
public_html/themes/SimpleBlackV2/forums/index_body.tpl
FIND:
REPLACE WITH:
SAVE & CLOSE
now all you need to do is clear your sites and browsers cache and you should be all set.
First, Open up;
public_html/themes/Your_Theme/style/style.css
FIND:
Code: [ Select all ]
.genmed {
The full code should looks something like this:
Code: [ Select all ]
.genmed { font-size : 11px; }
But, with each theme being different, I can't guarantee that it will be exact. But the next step will go after the full line, not just the first part I showed.
NEW LINE AFTER ADD:
Code: [ Select all ]
.genmedsub { font-size: 14px; }
Set the font size that you want there.
SAVE & CLOSE
Open:
public_html/themes/SimpleBlackV2/forums/index_body.tpl
FIND:
Code: [ Select all ]
{catrow.forumrow.sub.FORUM_NAME}
REPLACE WITH:
Code: [ Select all ]
<span class="genmedsub">{catrow.forumrow.sub.FORUM_NAME}</span>
SAVE & CLOSE
now all you need to do is clear your sites and browsers cache and you should be all set.
thanks corpse
i just changed these and it works on all of my multi themes
thanks its the only thing that forum users have been asking about for a while to be resized
thank you corpse
i just changed these and it works on all of my multi themes
.genmed { font-size : 10px; } //subforum text
.gensmall { font-size : 10px; } // username
to
.genmed { font-size : 13px; } //subforum text
.gensmall { font-size : 13px; } // username
thanks its the only thing that forum users have been asking about for a while to be resized
thank you corpse
The reason I didn't have you change that was because I don't know where else in the theme that would affect things, thats why I put it so you would create a new class and do it the way I said. Either way works.
yes i will keep an eye on it see if it affects other thing if i does i will switch it to your way
thank you again YOUR THE MAN
thank you again YOUR THE MAN

n/p
just an update
i had to follow your instructions corpse
when i went to view recent posts the larger text pushed the blocks outside the theme boundaries
didnt realise untill i went to check recent posts for the first time since i did code changes
ill remember check that next time
i had to follow your instructions corpse
when i went to view recent posts the larger text pushed the blocks outside the theme boundaries
didnt realise untill i went to check recent posts for the first time since i did code changes
ill remember check that next time
ah, n/p, it happens.