News:

We have *Free* SMF 2.0 & 2.1 Themes for Download and Support!

Main Menu

Recent Topics

Members
Stats
  • Total Posts: 10,749
  • Total Topics: 1,374
  • Online today: 516
  • Online ever: 879
  • (Jan 21, 20, 05:49:15 PM)
Users Online
Users: 0
Guests: 499
Total: 499

XCaliber Textbox font size

Started by Jaym, Mar 11, 11, 02:27:59 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Jaym

hello there folks, I was wondering if it was at all possible to modify the size of text inside of a text box on the X Caliber RC4 theme?

An example of what I am talking about would be this post I am writing right now, the text inside this box is slightly larger than I would like it to be for my forum.

Not sure how clear this message was, so let me know if you need any clarification!

Thanks.

willemjan

Yeah search for textarea in the index.css

Change the % in there ;)

Crip


/* The font size of textareas should be just a little bit larger. */
textarea
{
font: 100%/130% verdana, Helvetica, sans-serif;
}
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

willemjan


Jaym

Hey guys, thanks for the quick response!

I tried altering the percentages just now, but it doesn't seem to be having any effect on the size of the text. Any glaringly obvious mistakes I could be making here?

For reference, here is the current status of it:

/* The font size of textareas should be just a little bit larger. */
textarea {
   color: #9F9F9F;
   background: #2B2B2B;
   border: 1px solid #040404;
   font: 100%/130% verdana, Helvetica, sans-serif;
}

Crip

#5
not sure why?
..you can try this bit and 'one should' change the size..

input, button, select, textarea {
font: 95%/115% verdana, Helvetica, sans-serif;
color: #9F9F9F;
background: #2B2B2B;
border: 1px solid #040404;
padding: 2px;
}
/* Select elements look horrible with the extra padding, so leave them unpadded. */
select {
padding: 0;
}
/* Add some padding to the options instead. */
select option {
padding: 1px;
}
/* The font size of textareas should be just a little bit larger. */
textarea {
color: #9F9F9F;
background: #2B2B2B;
border: 1px solid #040404;
font: 130%/150% verdana, Helvetica, sans-serif;
}


You can also try a different: font-family arial tahoma sans-serif;
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Jaym

Hmm, not sure what could be causing it. Changing the percentages doesn't seem to be having any effect on the size of the text when typing.

willemjan

Could we get an link to your site, with an test account for us?

Jaym

#8
http://deinos.partytowne.ca/index.php

login as Cripzone, password is cripzone

Or make an account yourself, whatever you prefer.

edit: security question answer is deinos, if you do decide to make one.

willemjan

Found it!

In index.css there is this:

textarea {
font-size: 120%;


Change that to 100%