QUICK NEWS

{NEW} - A new css video is up.

{OLD} - New video courtesy of Skhilled, Thanks for posting it up.

Video of the moment:


Internal Links

SMF Sites

Quick Info

Button font size

Started by Noble, Today at 06:52 PM

Previous topic - Next topic

Skhilled and 1 Guest are viewing this topic.

Noble

SMF 2.1.4, how do I change the button Font Size.  Ex. Button new topic,new poll,mark read,no Went to make the font larger.

I beleive it is in the default skin/css/index.css, just can't find the location, guess I have no clue what I am looking for.

Noble

You cannot view this attachment.You cannot view this attachment.You cannot view this attachment.You cannot view this attachment.   You cannot view this attachment. smf 2.1.4 Went to make the font larger.

I beleive it is in the default skin/css/index.css, just can't find the location, guess I have no clue what I am looking for.
 

Skhilled

Hi, Noble and welcome to SMFH. :)

I think the code you are looking for is this but you'll want to backup your your file first:

/* Styles for the standard button lists.
------------------------------------------------------- */
.buttonlist, .buttonrow, .pagelinks {
z-index: 100;
padding: 5px 0 5px 0;
}

You'll want to change it to this:

/* Styles for the standard button lists.
------------------------------------------------------- */
.buttonlist, .pagelinks {
z-index: 100;
padding: 5px 0 5px 0;
}
.buttonrow {
z-index: 100;
padding: 5px 0 5px 0;
        font-size:12px;
}

Basically, you'll want to change the 'font-size' number to something you like. :)