myspace DIV text help |
myspace DIV text help |
![]()
Post
#1
|
|
Member ![]() ![]() Group: Member Posts: 14 Joined: Jul 2009 Member No: 740,097 ![]() |
so i have a div layout and im right now trying to move my text for "about me" around
i want it to be white and located in the top center of the gold frame heres the link to my profile http://www.myspace.com/stephanieleung |
|
|
![]() |
![]()
Post
#2
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Look for this:
CODE .main { position: absolute; left: 27.7%; top: 507px; z-index:1; width: 642px; height :319; overflow:hide; color:ffffff; background-color:transparent; font-family:helvetica; font-size:11; text-align:justify; scrollbar-face-color:481162; scrollbar-shadow-color:060606; scrollbar-highlight-color:060606; scrollbar-3dlight-color:060606; scrollbar-darkshadow-color:060606; scrollbar-track-color:060606; scrollbar-arrow-color:ffffff; } Replace it with this: CODE .main { position: absolute; left: 50%; margin-left:#px; top: 507px; z-index:9; width: 642px; height :319; overflow:hide; color:ffffff; background-color:transparent; font-family:helvetica; font-size:11; text-align:justify; scrollbar-face-color:481162; scrollbar-shadow-color:060606; scrollbar-highlight-color:060606; scrollbar-3dlight-color:060606; scrollbar-darkshadow-color:060606; scrollbar-track-color:060606; scrollbar-arrow-color:ffffff; } .main p {color: fff!important;} Replace the pound symbol on the attribute I underlined with an appropriate value until it's where you want it to be. Then on this bit: CODE <div class="main"> <br /> <center> <strong>Stephanie Skeleton<br /> <div style="float;margin-left: 200; top: 500"> <p> about me </p> </div> Close any tags you open or they will affect any content after them: CODE <div class="main">
<br /> <center> <strong>Stephanie Skeleton</strong> </center><br /> <div style="float;margin-left: 200; top: 500"> <p> about me </p> </div> |
|
|
![]() ![]() |