Help - Search - Members - Calendar
Full Version: CSS text sizes
Invision Power Services > Community Forums > Community Web Design and Coding
john01
I probably posted this to the wrong forum earlier. Before i contact support, someone will surely know the answer to this!

I want to increase the viewable text sizes when creating a new post, and viewing posts, by default. What part of the skin stylesheet code do I edit to achieve this? I have been playing with various font sizes in the CSS for ages and end up changing the wrong things! Any help would be appreciated! Thanks!

(the reason i ask is that when creating a post and viewing a post I seriously think the default text size is too small... on the default I'd like to make what peeps see BIGGER. They can always choose another skin if they like something like size 10!)

John
Starnox
<div class="post2">
<div class="postcolor">

Tried those?
john01
QUOTE(Starnox @ May 9 2005, 08:04 PM) *
<div class="post2">
<div class="postcolor">

Tried those?


Thanks Starnox...
OK... i sorted the view font size

QUOTE
/* Topic View elements */
.postcolor{
font-size: 17px;


BUT can't fathom which code to change the font size when editing a reply, as in this box!

blink.gif
Starnox
class="rteiframe"
David S.
Sometimes div causes problems so

<span class='class'>Text</span>

.class{
color: #somecolor;
font-size: somesizepx;
}

OR

<p class='someclass'>HELLO!</p>

.class{
color: #somecolor;
}

.class p{
font-size: somesizepx;
David S.
Sometimes div causes problems so

<span class='class'>Text</span>

.class{
color: #somecolor;
font-size: somesizepx;
}

OR

<p class='someclass'>HELLO!</p>

.class{
color: #somecolor;
}

.class p{
font-size: somesizepx;
}
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.