Changing font size
Posted: Mon Feb 16, 2009 4:18 am
I need help with something really simple. My site's text is set to Trebuchet MS, and right now it looks kind of small, so I'd like to experiment with a larger size (and maybe a different font family).
I feel ridiculous posting this here, as I'm not new to CSS at all, but for some REASON, none of the changes I make in the stylesheet are being reflected when I view the site and hit refresh. I've tried increasing the main font-size to 110%, the font size to 10em, and nothing happens. I don't know whether there's some sort of inherited style that's over-riding everything, or what.
The markup for the site is pretty clean, all the text I'm concerned with is encased in tags.
There is only 1 stylesheet, which I'm pasting below. If anyone can take a look at it and tell me how on earth to get font sizes to change, I would be much obliged! Thank you.
I feel ridiculous posting this here, as I'm not new to CSS at all, but for some REASON, none of the changes I make in the stylesheet are being reflected when I view the site and hit refresh. I've tried increasing the main font-size to 110%, the font size to 10em, and nothing happens. I don't know whether there's some sort of inherited style that's over-riding everything, or what.
The markup for the site is pretty clean, all the text I'm concerned with is encased in tags.
There is only 1 stylesheet, which I'm pasting below. If anyone can take a look at it and tell me how on earth to get font sizes to change, I would be much obliged! Thank you.
Code: Select all
@charset "utf-8";
/* CSS Document */
.calendar-event
{
text-align:right;
padding:10px 15px 10px 10px;
}
.calendar-date-from
{
color:#7A3864;
font-size:12pt;
}
.seedetails
{
font-size:9pt;
}
.orange
{
border:0;
color: #f3d780;
background-color: #f3d780;
height: 2px;
}
/* RESET STUFF */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
font-family:trebuchet MS;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
body {
line-height: 1;
color: #555;
background: white;
}
p{
font-family:trebuchet MS, sans;
font-size:.7em;
line-height:1.5em;
padding:10px;
text-align:justify;
}
ol, ul {
list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}
/* Site Styling */
body{
background-color:#7a3864;
}
.wrapper {
margin:0 auto 0 auto;
width:793px;
}
.header img{
margin:0;
padding:0;
}
.main_nav {
background-image:url(../images/main_image.jpg);
background-repeat:no-repeat;
background-position:top left;
height:214px !important;
position: relative;
margin:0;
}
.nav_bar{
background-image:url(../images/nav_bg1.jpg);
height:36px !important;
filter:alpha(opacity=75);
-moz-opacity:.75;
opacity:.75;
position: absolute;
top:200px;
top:178px;
width:793px;
border-bottom:10px solid #894A75;
}
.main_nav ul {
margin:10px 0 0 0;
}
.h_nav li {
color:#fbf8de;
display:inline;
font-family:trebuchet MS;
font-size:13px;
padding:11px 32px 9px !important;
}
.h_nav li.last {
border:none !important;
}
.h_nav li a {
color:#fbf8de;
text-decoration:none !important;
}
.h_nav li a:hover {
color:#fff;
text-decoration:underline !important;
}
.content_area {
background-color:#FFFFF3;
background-image:url(../images/content_bg.jpg);
background-repeat:repeat-x;
background-position:bottom;
float:left;
margin-top:10px;
padding:10px;
width:773px;
}
.right_col {
float:right;
width:241px;
margin-top:16px;
}
#bio_icons {
margin-top:10px;
}
#bio_icons img {
padding:5px;
}
.main_col {
width:500px;
margin-top:16px;
}
.main_lower_text_area {
float:right;
width:260px;
margin-top:16px;
}
.main_image_area {
padding:30px;
}
.main_lower {
}
dl {
padding:10px 10px 10px 40px;
}
dl dt {
color:#575756;
font-size:16px;
padding-bottom:3px;
}
dl dd {
color:#894A75;
font-size:16px;
}
.harp_player {
padding:13px;
}
.harp {
padding:13px;
}
.lower_nav {
}
.lower_nav_bar {
}
.f_nav {
background-color:#2C2C2C;
height:42px;
padding:21px 0 0;
text-align:center;
width:793px;
}
.f_nav ul {
}
.f_nav li {
border-right:2px solid #7F2A65;
display:inline;
font-size:12px;
margin:0 18px 0 0;
padding:0 23px 0 0;
}
.f_nav li a {
color:#FFFFFF;
font-size:11px;
text-decoration:none !important;
}
.f_nav li a:hover{
color:#c892b6;
font-size:11px;
text-decoration:underline !important;
}
.f_nav li.last {
border:none !important;
}
.swish {
height:126px !important;
background-image:url(../images/swish.jpg);
}
.swish p {
color:#bf89ad;
padding:15px;
text-align:right;
}