Need Help Again on Div |
![]() ![]() |
Need Help Again on Div |
Apr 24 2009, 02:02 AM
Post
#1
|
|
|
Member ![]() ![]() Group: Member Posts: 28 Joined: Jan 2009 Member No: 708,903 |
First how do you put a background on a div? I've tried doing that and the code I'm using for the div is this: CODE <div class="content" style="position: absolute; left:000px; top:000px; width:000px; height:000px; overflow: auto;"><center>
CONTENT FOR DIV. </div> |
|
|
|
Apr 24 2009, 05:16 AM
Post
#2
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Add background properties so it looks like this:
CODE <div class="content" style="position: absolute; left:000px; top:000px; width:000px; height:000px; overflow: auto; background-color:000000; background-image: url(URL); background-position:center; background-repeat:repeat; background-attachment:fixed;"><center> CONTENT FOR DIV. </div> Just play around with them to suit your liking. |
|
|
|
Apr 26 2009, 05:39 PM
Post
#3
|
|
|
Member ![]() ![]() Group: Member Posts: 28 Joined: Jan 2009 Member No: 708,903 |
Okay and how can you get different headers? You know for sizes and colors?
|
|
|
|
Apr 27 2009, 03:48 AM
Post
#4
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Create classes with different styles, like this:
CODE <style> .headerl {font:normal 18pt Times New Roman; color:black; text-transform:lowercase; letter-spacing:-3px;} .header2 {font:normal 18pt Century Gothic; color:white; text-transform:uppercase; letter-spacing:3px;} </style> Switch them up to your liking, then use them like this: CODE <span class="header1">HEADER TEXT</span> Insert text here. <span class="header2">HEADER TEXT</span> Insert text here. Replace the text as you see fit. |
|
|
|
Apr 27 2009, 09:58 PM
Post
#5
|
|
|
Member ![]() ![]() Group: Member Posts: 28 Joined: Jan 2009 Member No: 708,903 |
Okay thanks so much I've got three more questions.
1. How do you do different colors for different letters? And is that possible for any letter in the word or just the first or last? 2. Is there a different code your supposed to use for a comment box to have image's in it also? 3. And I can't remember if this was one of the rules, when I went to check I didn't find it either. Are the bottom links supposed to remain visible when you do a div? |
|
|
|
Apr 28 2009, 05:19 AM
Post
#6
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
1) It's possible for any letter. Try this code:
CODE <font color="######">A</font><font color="######">B</font><font color="######">C</font><font color="######">D</font><font color="######">E</font> Replace the 6 pound symbols with hex codes according to what colour you want each character to be. 2) Adding a background to a comment box is the same as adding a background to a DIV. Just use <textarea> tags instead of <div> tags. 3) I'm not sure but it's best to leave it visible, especially the copyright. |
|
|
|
Apr 29 2009, 12:04 AM
Post
#7
|
|
|
Member ![]() ![]() Group: Member Posts: 28 Joined: Jan 2009 Member No: 708,903 |
Okay and actually I thought of one last thing for the size of the comment box, can you use the px sizes instead of the column kind of size? And how do you adjust the color of the submit button? The code I have doesn't have it in there.
|
|
|
|
May 7 2009, 03:03 AM
Post
#8
|
|
|
Member ![]() ![]() Group: Member Posts: 28 Joined: Jan 2009 Member No: 708,903 |
This is the one I use:
CODE <div style="text-align:center;"> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input type="hidden" name="friendID" value="FRIENDID"><textarea name="f_comments" id="f_comments" cols="30" rows="3" style=" background-color:white!important; background-image: url(); background-position: top left; background-attachement: fixed; background-repeat: repeat; border:1px black solid; font-family:Arial!important; font-size:16px!important; color:black!important; ">Leave Me A Comment In My Comment Box!</textarea><br><input type="submit" value="Submit"><input type="reset" value="Clear"></form>
|
|
|
|
May 7 2009, 03:52 AM
Post
#9
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Replace that code with this:
CODE <div style="text-align:center;"> <form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input type="hidden" name="friendID" value="FRIENDID"><textarea name="f_comments" id="f_comments" cols="30" rows="3" style=" background-color:white!important; background-image: url(); background-position: top left; background-attachement: fixed; background-repeat: repeat; border:1px black solid; font-family:Arial!important; font-size:16px!important; color:black!important; ">Leave Me A Comment In My Comment Box!</textarea><br><input type="submit" value="Submit" style=" background-color:white!important; background-image: url(); background-position: top left; background-attachement: fixed; background-repeat: repeat; border:1px black solid; font-family:Arial!important; font-size:16px!important; color:black!important; "><input type="reset" value="Clear"></form> Then edit the underlined bit to customize its style. |
|
|
|
May 9 2009, 08:21 PM
Post
#10
|
|
|
Member ![]() ![]() Group: Member Posts: 28 Joined: Jan 2009 Member No: 708,903 |
Okay well arigato, I mean thank you. Thats all for now, thanks for the help. ^_^
|
|
|
|
May 10 2009, 12:49 AM
Post
#11
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Administrator Posts: 8,629 Joined: Jan 2007 Member No: 498,468 |
Topic Closed & Moved
|
|
|
|
![]() ![]() |