jane_khute
08-13-2004, 01:57 PM
sorrie for asking lots of question but i reali need to learn..im new to this
well can somone tell me what this means
div.blogheader, .caption {
/* edits the dates */
font-family:impact;
text-transform:uppercase;
font-size:16px;
line-height:10px;
font-weight:bold;
color:#996666;
letter-spacing:0px;
background-color: #ff9999;
text-align: left;
}
Monkey Bizzle
08-13-2004, 03:23 PM
what do you want to know? do you want to know what part of the page it edits or what the actual codes mean? you really have to be specific here...
div.blogheader, .caption
{
/* edits the dates */ <--obvious right??
font-family:impact; <--changes font of dates to Impact
text-transform:uppercase; <--makes the text in all caps
font-size:16px; <--font size will be 16px high
line-height:10px; <--line height will be 10px high
font-weight:bold; <--font will be bold
color:#996666; <--font color will be #996666
letter-spacing:0px; <--there will be no spaces between letters
background-color: #ff9999; <--the background of the dates will be that
text-align: left; <--and all text will be aligned to the left.
}
jane_khute
08-13-2004, 04:59 PM
oh thanx that did help sorrie if i didnt be more specific i couldnt explain it but now i ferget what i actually wanted to know about that but you explained it an that did help...ok div.blogheader, .caption what is that supposed to mean anyways
those are a "class" in css.
in the page coding, when it comes across a part that has the class in it, the style will be applied to it. in your example, it will look for something like...
<div class="blogheader">
stuff will be styled here according to the settings you chose.
</div>
<div class="caption">
stuff will be styled here according to the settings you chose.
</div>
jane_khute
08-14-2004, 10:37 AM
ohh thanx what kind of stuff can you add in between that code
<div class="blogheader">
stuff will be styled here according to the settings you chose.
</div>
jane_khute
08-14-2004, 10:44 AM
ohh thanx what kind of stuff can you add in between that code
<div class="blogheader">
stuff will be styled here according to the settings you chose.
</div>
normal stuff...
text, images, links, and so forth.
whatever you put in that area will be "styled" as seen in the css part.
Monkey Bizzle
08-15-2004, 01:07 AM
seeing as how in the original coding it says "edits the dates" then you prolly want to put the dates and stuff in there...