How to add colors ect. |
How to add colors ect. |
![]()
Post
#1
|
|
![]() Funride.org ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 326 Joined: Jul 2007 Member No: 542,299 ![]() |
So I kind of just made this code from my head and what I remeber.
CODE <style> .content1 {position: absolute; top:###px; left:###px; width:###px; height:###px; overflow: auto;} .content2 {position: absolute; top:###px; left:###px; width:###px; height:###px; overflow: auto;} </style> CODE <div class="content1"> STUFF GOES HERE </div> <div class="content2"> STUFF GOES HERE </div> But my question is. In the CSS how do I put the text colors, navigation, and background image. Another question, should I just design the tables along with the header image in PSP2 then allign them with the code? |
|
|
![]() |
![]()
Post
#2
|
|
![]() Offline. ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 609 Joined: Mar 2007 Member No: 507,591 ![]() |
just add the css
CODE color: #XXXXXX; to you css.Here is some HEX code. http://img441.imageshack.us/img441/2940/bgcolors1536se2.png |
|
|
![]()
Post
#3
|
|
![]() Funride.org ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 326 Joined: Jul 2007 Member No: 542,299 ![]() |
just add the css CODE color: #XXXXXX; to you css.Here is some HEX code. http://img441.imageshack.us/img441/2940/bgcolors1536se2.png How do I add the background image? |
|
|
![]()
Post
#4
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 5,880 Joined: Nov 2007 Member No: 593,382 ![]() |
If you talking about the whole page then use the body tag in your css.
body{ background-color:XXXXXX; background-image:url(); } |
|
|
![]()
Post
#5
|
|
![]() Mel Blanc was allergic to carrots. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 6,371 Joined: Aug 2008 Member No: 676,291 ![]() |
You can also use an "img" tag if you just want a "background" image for a certain div class.
|
|
|
![]()
Post
#6
|
|
![]() Irrisistable Cabbages. ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 549 Joined: Nov 2007 Member No: 589,355 ![]() |
All you have to do is change all of the XX's to numbers. and insert an image url for the background. You can add a hole bunch of stuff to the code. PM me if you need me to help you out with this code. I just usually just make them with my editor and just align them because that's easier for me but do whatever your better with. Definitions- Top= how far from the top you want something Left= how far from the left you want something CODE <style type="text/css">
body {background-image: url("IMAGE URL HERE"); background-repeat: repeat; color: COLOR OF TEXT HERE; font-family: arial, sans serif, times; font-size: XXpx} #content {width: XXpx; height: XXpx; top: XXpx; left: XXpx;} #navigation {width: XXpx; height: XXpx; top: XXpx; left: XXpx;} <style> <div id="content"> TEXT HERE </div> <div id="navigation"> TEXT & LINKS HERE </div> |
|
|
![]()
Post
#7
|
|
![]() Member ![]() ![]() Group: Official Designer Posts: 10 Joined: Oct 2008 Member No: 692,614 ![]() |
heres every property i can think of that you don't already have
CODE .content { color: red; font-size: 12px; font-family:arial; font-weight: normal; text-decoration: none; text-transform: none; line-height: 13px; letter-spacing: 0px; word-spacing: 4px; } CODE this is the code with explanation
.content { color: red;(can be the name of a color or a hex code ex. of hex #000000 ) font-size: 12px;(change the 12 to any number) font-family: arial;(theres tons of fonts, just replace arial with it) font-weight: normal;(bold or normal theres more specific ones but i dont use them) text-decoration: none;(can be underline, strikethrough) text-transform: none;(can be uppercase, lowercase, or none) line-height: 13px;(change the 13 to any number) letter-spacing: 0px;(cange 0 to any number) word-spacing: 4px;(cange 4 to any number) } |
|
|
![]() ![]() |