soulflycrx
12-10-2003, 02:50 PM
Hello. I am still working on the CSS elements of my site. I bet that some of you veterens would of finished what I am doing in 5 minutes. Sofar I have spent 7 hours in total trying to figure things out.
I have read lots, but its a bit overwhelming. The page I am working on is here: http://www.wildernesscrossing.com/terryredlin/terryredlin.html
My problem is this. If you look at the page, you will notice that I have many different styles of text. Menu titles, menu items, section titles, thumbnail titles, thumbnail descriptions, prices, etc.
I used H1 for the top graphic of the page.
I used H2 for the words "Print Gallery - Terry Redlin"
I used H3 for the words "Artist Index"
Now, I figure that I dont need any more headings. So thats fine. Now what do I do to set up the attributes for all the other styles of text?
I set attributs for <p>, but what if I want more? I tried to make <p2> etc. but that did not work.
So what do I do if I want to make more then one style of <P>????
**** NOTE: The source of that web page URL page is not current, its purely for reference. My external CSS looks like this:
<!--
H1 = Top logo (header.gif)
H2 = Maroon text title (ie. Print Gallery - Terry Redlin)
H3 = Menu text title (ie. Artist Index)
P = Grey thumbnail text title
-->
<style type="text/css">
body {
background: #CCCC99;
background-image: url(../images/bg2.gif);
color: #000000;
margin: 0%;
}
a:link {color: #006699;}
a:visited {color: #006699;}
a:hover {color: #006699;}
a:active {color: #006699;}
H1 {
margin-top: 0px;
margin-bottom: 0px;
}
H2 {
font-size: 14pt;
font-weight: bold;
margin-top: 0px;
margin-bottom: 0px;
font-family: Georgia, Times New Roman, Times, serif;
color: #993300
}
H3 {
font-size: 12pt;
font-weight: bold;
font-style: italic;
margin-top: 0px;
margin-bottom: 0px;
font-family: Georgia, Times New Roman, Times, serif;
color: #000000
}
P {
font-size: 12pt;
font-weight: bold;
margin-top: 0px;
margin-bottom: 0px;
font-family: Georgia, Times New Roman, Times, serif;
color: #CCCCCC
}
</style>
I have read lots, but its a bit overwhelming. The page I am working on is here: http://www.wildernesscrossing.com/terryredlin/terryredlin.html
My problem is this. If you look at the page, you will notice that I have many different styles of text. Menu titles, menu items, section titles, thumbnail titles, thumbnail descriptions, prices, etc.
I used H1 for the top graphic of the page.
I used H2 for the words "Print Gallery - Terry Redlin"
I used H3 for the words "Artist Index"
Now, I figure that I dont need any more headings. So thats fine. Now what do I do to set up the attributes for all the other styles of text?
I set attributs for <p>, but what if I want more? I tried to make <p2> etc. but that did not work.
So what do I do if I want to make more then one style of <P>????
**** NOTE: The source of that web page URL page is not current, its purely for reference. My external CSS looks like this:
<!--
H1 = Top logo (header.gif)
H2 = Maroon text title (ie. Print Gallery - Terry Redlin)
H3 = Menu text title (ie. Artist Index)
P = Grey thumbnail text title
-->
<style type="text/css">
body {
background: #CCCC99;
background-image: url(../images/bg2.gif);
color: #000000;
margin: 0%;
}
a:link {color: #006699;}
a:visited {color: #006699;}
a:hover {color: #006699;}
a:active {color: #006699;}
H1 {
margin-top: 0px;
margin-bottom: 0px;
}
H2 {
font-size: 14pt;
font-weight: bold;
margin-top: 0px;
margin-bottom: 0px;
font-family: Georgia, Times New Roman, Times, serif;
color: #993300
}
H3 {
font-size: 12pt;
font-weight: bold;
font-style: italic;
margin-top: 0px;
margin-bottom: 0px;
font-family: Georgia, Times New Roman, Times, serif;
color: #000000
}
P {
font-size: 12pt;
font-weight: bold;
margin-top: 0px;
margin-bottom: 0px;
font-family: Georgia, Times New Roman, Times, serif;
color: #CCCCCC
}
</style>