Log In · Register

 
Myspace Help, Link Alignment
blazey-blazey
post Jun 11 2007, 05:38 PM
Post #1


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Aight I know if not everybody, almost everybody has had issues with things coming out fine on IE and not Firefox and vice versa. Same problem here. For some reason, the link at the top of my myspace page doesn't align well on IE but it does on firefox and I can't seem to pin-point the problem.

Take a look at the page. View it on both browsers. If anyone can help, I'd appreciate it. Even if you can't, still appreciated.

http://myspace.com/192366443


p.s - I used div tags to position each link. Tables didn't work fine on Firefox (couldn't center them).

-Blazey-
 
2 Pages V   1 2 >  
Start new topic
Replies (1 - 24)
*alovesopure*
post Jun 11 2007, 05:51 PM
Post #2





Guest






Moved to Myspace Support.
 
Clashing
post Jun 11 2007, 07:57 PM
Post #3


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



i see that your first three links look ok except for the last three links... are those the ones you're talking about??
 
blazey-blazey
post Jun 11 2007, 08:33 PM
Post #4


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Yea, the last three

-Blazey-
 
Clashing
post Jun 11 2007, 08:55 PM
Post #5


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



ok, give me the code for those parts. so, i'll know how to change that.
 
blazey-blazey
post Jun 11 2007, 09:07 PM
Post #6


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



This is the CSS code for the links. I named them according to what link I was going to use them for. To make it easier when trying to edit

CODE
.home {
position: absolute;
top: 100px; left: 30px;
}

.add {
position: absolute;
top: 100px; left: 155px;
}

.pix {
position: absolute;
top: 100px; left: 285px;
}

.friends {
position: absolute;
top: 100px; left: 472px;
}

.message {
position: absolute;
top: 100px; left: 650px;
}

.dcomment {
position: absolute;
top: 100px; left: 830px;
}



And this is how I implemented them...

CODE
<div class="home"><a href="http://home.myspace.com/index.cfm?fuseaction=user" class="nav">Home</a></div>

<div class="add"><a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=192366443" class="nav">Add Me</a></div>

<div class="pix"><a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=192366443" class="nav">Picture(s)</a></div>

<div class="friends"><a href="http://home.myspace.com/Modules/ViewFriends/FriendsView.aspx?friendID=192366443" class="nav">Friend(s)</a></div>

<div class="message"><a href="http://messaging.myspace.com/index.cfm?fuseaction=mail.message&friendID=192366443" class="nav">Message Me</a></div>

<div class="dcomment" align="justify"><a href="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=192366443" class="nav">Drop Comment(s)</a></div>



-Blazey-
 
Clashing
post Jun 11 2007, 09:18 PM
Post #7


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



ok, i revised the last three parts of your code in the first box... let me know how that turns out.

CODE
.friends {position: absolute; top: 100px; left: 472px; height:30px; width:auto;}.message {position: absolute; top: 100px; left: 650px; height:30px; width:auto;}.dcomment {position: absolute; top: 100px; left: 830px; height:30px; width:auto;}
 
blazey-blazey
post Jun 11 2007, 09:27 PM
Post #8


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Didn't work. Still the same thing in IE

-Blazey-
 
Clashing
post Jun 11 2007, 09:35 PM
Post #9


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



i think i do know why. give me the code to your class "nav".
 
blazey-blazey
post Jun 11 2007, 09:42 PM
Post #10


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Here it is..

CODE
a.nav, a.nav:link, a.nav:visited, a.nav:active {
color: white;
font-family: 'Century Gothic', Arial, sans-serif!important;
font-size: 11pt;
font-weight: bold;
font-style: normal;
text-decoration: underline !important;
background-color: transparent;
text-transform: none !important;
}


-Blazey-
 
Clashing
post Jun 11 2007, 09:53 PM
Post #11


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



actually, that's not it. give me the whole code. so, i can look at it.

ok, i finally figured it out... the reason that it didn't work for the last three links is because there were too much divs that were overlapping each other. i just fixed it in one div. unfortunately, each of the links can't be put far apart from each other.

CODE
<style>
.navigation {width:830px; text-align:justify; position:absolute; top:100px; left:30px;}
</style>


CODE
<div class="navigation">
<a href="http://home.myspace.com/index.cfm?fuseaction=user" class="nav">Home</a> <a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=192366443" class="nav">Add Me</a> <a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=192366443" class="nav">Picture(s)</a> <a href="http://home.myspace.com/Modules/ViewFriends/FriendsView.aspx?friendID=192366443" class="nav">Friend(s)</a> <a href="http://messaging.myspace.com/index.cfm?fuseaction=mail.message&friendID=192366443" class="nav">Message Me</a> <a href="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=192366443" class="nav">Drop Comment(s)</a>
</div>



Posts Merged.
Please don't double post. -alovesopure (Kara)
 
blazey-blazey
post Jun 11 2007, 10:29 PM
Post #12


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



That worked fine. Thanx. I was trying to make them spread across the page and have the "Friend(s)" link right above the list of friends scrolling up. It looks too clustered now. Please don't get me wrong I appreciate your help..I really do.

Question(s) though...

- Do think, I may have left a div tag opened somewhere? Which may have caused the last three to look the way they did earlier?

- What's another way to spread the links across the page the way I tried to do it earlier without using so much div tags?

-Blazey-
 
Clashing
post Jun 11 2007, 10:31 PM
Post #13


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



i looked at every line... there's nothing wrong. so, i really can't seem to see what's wrong.

you can try doing two divs, each with three links. so it's not too much divs there.


Posts Merged.
Please don't double post. -alovesopure (Kara)
 
blazey-blazey
post Jun 11 2007, 10:39 PM
Post #14


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Ok thanx..I'll try that.

-Blazey-
 
blazey-blazey
post Jun 11 2007, 11:09 PM
Post #15


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Is it possible to insert two classes into one tag?

Example...

CODE
<style type="text/css">

.navigation {
width: 998px;
text-align:justify;
position:absolute;
top:100px; left:0px;
}

.home {
position: absolute;
top: 103px; left: 30px;
}
</style>

<body>

Blah blah blah...

<a href="http://www.yahoo.com" class="nav" class="home">Yahoo!</a>



I'm trying to do this..since with the "navigation" class the links seem to align well and not break. So with the code above, now it should fit the properties of the "home" class inside the "navigation" class and apply it to the link. Basically I'm looking at the "navigation" class as a table. Is it possible?

-Blazey-
 
Clashing
post Jun 11 2007, 11:24 PM
Post #16


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



you could try that... have you tried it yet?
 
blazey-blazey
post Jun 11 2007, 11:28 PM
Post #17


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Lol yea. Didn't work. Why???????? lol..getting frustrated. Want to see my whole code? Kind of messed up cuz I'm trying different things to see if it would work.

-Blazey-
 
Clashing
post Jun 11 2007, 11:33 PM
Post #18


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



hah, i know that gets frustrating and you just want to get it all solved!! crazy.gif you can send in the whole profile layout code and i can test it myself and try to help you with that.
 
blazey-blazey
post Jun 11 2007, 11:46 PM
Post #19


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



WARNING!! THE CODE IS MESSED UP!!!

CODE
<style type="text/css">



table, tr, td {background-color: 000000;}
table table table table, table table table table td.text, table.contactTable,
.whitetext12, .nametext, td.text td.text table, div b font font, div font font u {display: none;}
td.text table, .orangetext15 {visibility: hidden;}
td.text table table {display: inline; visibility: visible;}

div table {display:none;}

body {
background-color: 000000;
scrollbar-face-color:000000;
scrollbar-track-color:000000;
scrollbar-arrow-color:FFFFFF;
scrollbar-highlight-color:FFFFFF;
scrollbar-3dlight-color:000000;
scrollbar-base-color:000000;
scrollbar-shadow-color:000000;
scrollbar-dark-shadow-color:000000;
}

div.myspace-scroll-box {
height:325px;
color:white;
font-weight:bold;
overflow:scroll;
}

.topbanner{
position:absolute;
top: 0px;
left:0px;
}

.cover {
width: 301px; height: 20px;
position: absolute;
top: 139px; left: 50%;
margin-left:-368px;
background-color: 000000;
background-image: none;
}

.navigation {
width: 998px;
text-align:justify;
position:absolute;
top:100px; left:0px;
}

.navigate {
position: absolute;
top: 100px; left: 472px;
height:30px; width:auto;
}

.content {
position: absolute;
top: 145px; left:570px;
width: 425px!important;
height:345px!important;

}

.playlist {
position: absolute;
top: 135px; left:0px;
}

.afterpl {
position: absolute;
width:437px; left:0px;
top:434px;
color:white;
font-weight:bold;
}

.peepz{
position:absolute;
top:145px;
left:450px;
width:110px;
height:325px!;
}

.basebanner {
position: absolute;
top:474px; left:0px;
}

.content {
color: white !important;
font-family: Verdana, sans-serif;
font-size: 7.5pt;
}

a:link img {filter:xray();}
a:visited img {filter:xray();}
a:hover img {filter:none;}

a, a:link, a:visited, a:active {
color: FFFFFF !important;
font-family: Georgia, 'Times New Roman', serif;
font-size: 11px;
font-weight: bold !important;
font-style: italic;
}

a:hover {
font-size:11px;
text-decoration:underline !important;
}

a.nav, a.nav:link, a.nav:visited, a.nav:active {
color: white !important;
font-family: 'Century Gothic', Arial, sans-serif !important;
font-size: 11pt !;
font-weight: bold;
font-style: normal !;
text-decoration: underline !important;
text-transform: none !important;
}

a.nav:hover {
color: FFFFFF !important;
text-decoration:none !important;
}

h1 {
color: white;
font-family: Imprint MT Shadow, Impact, sans-serif;
font-weight: normal;
font-size: 20pt;
margin: 0px 0px 3px 0px; padding: 0px;
display: block;
border-bottom: 1px dotted white;
border-top:1px dotted white;
}

.smalltext{
position:absolute;
width:300px;
text-align:justify;
top:564px;
left:375px;
font-size:0.8em;
color:FFFFFF;
font-family:verdana;
}

td td embed, td td object {position: absolute; top: -500px; left: -500px;}
td td td embed, td td td object {position: static !important;}

</style>





The Body..don't know if you'll need this also, but here it is..

CODE
<div class="cover">&nbsp;</div>

<img src="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun.jpg" width="997" height="90" class="topbanner"/>

<br /><br />

<div class="navigate"><a href="http://home.myspace.com/Modules/ViewFriends/FriendsView.aspx?friendID=192366443" class="nav" class="friends">Friend(s)</a></div>


<div class="navigation">
<a href="http://home.myspace.com/index.cfm?fuseaction=user" class="nav" class="home">Home</a>

<a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=192366443" class="nav" class="add">Add Me</a>

<a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=192366443" class="nav" class="pix">Picture(s)</a>

<a href="http://messaging.myspace.com/index.cfm?fuseaction=mail.message&friendID=192366443" class="nav" class="message">Message Me</a> <a href="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=192366443" class="nav" class="dcomment">Drop Comment(s)</a>
</div>





<div class="content" align="justify">

<div class="myspace-scroll-box">


<h1>Who is ...S.U.N.O...</h1>

<a href="http://www.profilesnitch.com"><img src="http://www.profilesnitch.com/tracker13/ZR85WW6L6Z.gif" border="0" width="1" height="1"></a>

<br />
<img src="http://i81.photobucket.com/albums/j213/jade_berretaz/bv_1_1.jpg" width="80" height="80" align="right" style="padding: 5px" />
f**k You Need To Know About Me?..I'm That Nigga Waiting For Yo Punk Ass In The Dark Alley On Your Pay Day! So When Next You Get Paid, Stay Out The Dark Alley Or We Gon Be Splittin' That Check (if I feel like it). Ya Dig?!? Oh Don't Get Me Wrong..I Rob Females Too. Just Because You Fine Don't Mean Ima Let You Slide..Shit..f**k That!!! That's The More Reason Ima Rob Yo Ass. Can't Be Pretty and Fly @ The Same Time. Naaah!!!..Not In My Book. Now, Ugly Bitches!!! Count Your Ugly Asses Lucky..Sometimes..Quote "<u>SOMETIMES</u>"..I Let Y'all Slide..Just So Y'all Have Something To Live For.<br>
So Mark My Words Muhfukkaz..If I Catch You Walkin' Down That Dark Alley..Best Believe..<U>YOU WILL BE GETTIN' ROBBED</U>..Enjoy! <p><center>One'z.</center><br />
</br>


<h1>A Lil' More..</h1>
<br />
Now To f**k With You <s>Assholes</s>..Remember All That <s>Bullshit</s> That Be On Every One Of You <s>Muhfukka</s>'z Page(s)?!?..That <s>Sexual</s> <s>Orientation</s>..<s>Status</s>..<s>Here For</s>..All That <s>Bullshit</s>..Just Because I am <u>BORED</u>, I Will Give Out a Lil' Information About ...S.U.N.O...<br><br>

<table border="1" bordercolor="FFFFFF" width="405">
<tr align="center">
<td colspan="2"><font color="FFFFFF"><b> - Myspace Bullshit -</b></font></td>
</tr>

<tr align="center">
<td width="50%"><font color="FFFFFF"><b>Name</font></b></td>
<td width="50%"><font color="FFFFFF"><b>...S.U.N.O...</b></font></td>
</tr>

<tr align="center">
<td width="50%"><font color="FFFFFF"><b>Zodiac</font></b></td>
<td width="50%"><font color="FFFFFF"><b>Aquarius</b></font></td>
</tr>

<tr align="center">
<td width="50%"><font color="FFFFFF"><b>Location</font></b></td>
<td width="50%"><font color="FFFFFF"><b>New York (718/516)</b></font></td>
</tr>

<tr align="center">
<td width="50%"><font color="FFFFFF"><b>Race</font></b></td>
<td width="50%"><font color="FFFFFF"><b>Nigga (Full Blooded Nigga)</b></font></td>
</tr>

<tr align="center">
<td width="50%"><font color="FFFFFF"><b>Sexual Orientation</font></b></td>
<td width="50%"><font color="FFFFFF"><b>Straight</b></font></td>
</tr>

<tr align="center">
<td><font color="FFFFFF"><b>Status</b></font></td>
<td><font color="FFFFFF"><b>Married (Practically)</b></font></td>
</tr>

<tr align="center">
<td><font color="FFFFFF"><b>Here For</b></font></td>
<td><font color="FFFFFF"><b>Boredom..Kill Time</b></font></td>
</tr>

<tr align="center">
<td><font color="FFFFFF"><b>Body Type</b></font></td>
<td><font color="FFFFFF"><b>6'0..Athletically Fat</b><font></td>
</tr>

<tr align="center">
<td><font color="FFFFFF"><b>Fav. Book</b></font></td>
<td><font color="FFFFFF"><b>I Don't Read (Kryptonite)</b></font></td>
</tr>

<tr align="center">
<td><font color="FFFFFF"><b>Music</b></font></td>
<td><font color="FFFFFF"><b>Mostly Hip-Hop</b></font></td>
</tr>

</table>
<br /></br>

Let's Get Something Clear..<u>Regardless Of Me Having a Myspace Account, I Still Stand My Ground and Say <s>f**k TOM!!!</s></u> Bwuahahahahaha LOL..Now Watch My Account Get Deleted Soon. <s>Muhfukkaz!!!</s> Only Reazon I Got This Account Was For Viewing Damn Profile Pictures Because Thanx To <s>TOM</s>, One Can't View Pictures Without Having a Damn Account. So I Figured, Since I Got an Account..and I am Bored as a <s>Muhfukka</s>, I Might as Well Go Ahead and Design It. And I Came Up With This Garbage. It is Garbage Because I am Still To Figure Out How These Damn Default Pages Were Made. And I Will Figure It Out..Trust!..<br /></br>

That's All I Have To Say To All You Myspace Addicts..Hmm..I Want To Believe That as You All Are So..And I Say This With Every Bit Of Sarcasm.."Smart"..You All Have Figured I am Just Trying To Kill Time and Fill This Page With as Lil' Info as Possible Bwuahahahaha..<br /></br><p>


<h1>Who ...S.U.N.O... Wants To Meet..</h1>
<br />
Hmm..Who I'd Like To Meet?!?..*rubs chin*..I'd Say My Maker. I Know None Of You f**kers Are Worth Meeting Anyways. Meet One <s>Muhfukka</s> and You've Met Them All..Same as The Next <s>Muhfukkin'</s> Nigga Standing Right Next To You. So If You Ain't My Maker, Ima Tell You Like an <u>"English Prick"</u>, <b><u>BUGGER OFF MATE!!! BLOODY WANKERS!!!</u></b> <br /></br><p>


<h1>Gratitude To..</h1>
<br />
Umm Ok, Time For The Truth Lol. Whatever Graphix You See On This Page Wasn't Done By Me..I Wish..They Were All Done By My Sis (Malika). See That Nice Looking Banner @ The Top and @ The Bottom?..Yep!..That's Malika's Work. If You Look Closely Or Have a Good Eye, You Will Notice They Both Look a Lil' Distorted. That's Because I Had to Enlarge Them To Fit Across The Page. The Real Sized Images Can Be Found <a href="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun.jpg" target="_blank">here</a> and <a href="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun.gif" target="_blank">here</a>. I Would've Linked You <s>f**kers</s> To Her Myspace Page, But Her <s>Ass</s> Took it Down..Why?..Personal Reazons..Thanx Though Sis..I Appreciate It :x :x <br /></br>

<center>A Few Of Malika'z Graphix. Click On Each For a Full View.</center><br /></br>

<center>Coming Soon..</center><br /></br>

LOL Another Truth..Where Did I Get This Layout Idea From? What Idea?..Your Dumb <s>Asses</s> are Probably Askin'. The Idea Of Remaking My Page..To Look Like This and Not The Boring <s>Ass</s> Default Myspace Look Of "Pictures" On The Top Left, "Contact Table" Beneathe That.."Blogs" On The Right.."About Me" Beneathe Blogs.."Details" On The Left Of About Me..You Get The Drift. The Idea Came From My Other <a href="http://myspace.com/insidepairadice" target="_blank">Sis' Page (Juanita)</a>. I Saw It and Was Feeling It. It Wasn't The Regular Myspace Look..So I Asked and I Was Told. Like The Bible Says, <u>Ask and You Shall Receive.</u> Thanx Sis..I Appreciate It :x :x *Evil Ass* Oh and She Does Graphix Too :-) Yep Both My Sis' Do Graphix..I Seem To Be The Only One Who Doesn't..Hmm..f**k That! I'm Good Lol. <br /></br>

<center>A Few Of Juanita'z Graphix. Click On Each For a Full View.</center> <br /></br>

<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/therock.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/therock.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/romanceisintheair.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/romanceisintheair.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/sexyrebeltut.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/sexyrebeltut.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-djchick.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-djchick.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/mytwony.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/mytwony.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/DICEY-MYSTIQUE.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/DICEY-MYSTIQUE.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-friscobaby.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-friscobaby.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-sf.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-sf.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a>
<a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/nelly-illknow.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/nelly-illknow.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a></a><br /></br>

<center><u>:x :x :x LOVE YA BOTH!!! :x :x :x</u></center><br /></br>

..To Be Continued..
</div></div>


<div class="playlist">
<div style="text-align: center; margin-left: auto; visibility:visible; margin-right: auto; width:450;"><object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="270" width="435" style="width:435px; visibility:visible; height:270px;" border="0" data="http://www.myplaylist.org/mc/mp3player.swf?config=http://www.myplaylist.org/mc/config/config_black_shuffle.xml&mywidth=435&myheight=270&file=http://www.myplaylist.org/loadplaylist.php?playlist=5426135">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://www.myplaylist.org/mc/mp3player.swf?config=http://www.myplaylist.org/mc/config/config_black_shuffle.xml&mywidth=435&myheight=270&file=http://www.myplaylist.org/loadplaylist.php?playlist=5426135" />
<param name="menu" value="false" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
</object><BR><a href=http://www.myplaylist.org><img src=http://www.myplaylist.org/mc/images/create_black.jpg border=0></a><a href=http://www.myplaylist.org/standalone/5426135 target=_blank><img src=http://www.myplaylist.org/mc/images/launch_black.jpg border=0></a><a href=http://www.myplaylist.org/download/5426135><img src=http://www.myplaylist.org/mc/images/get_black.jpg border=0></a> </div> </div>

<div class="afterpl">
<u>IF THE SONGS ANNOY YOU, SDFU AND PAUSE IT!!! **IF TRACK(S) ON THERE STOPS PLAYING (DIES), PLEASE ONCE AGAIN SDFU ABOUT IT. I WILL HAVE IT/THEM CHANGED LATER!!!** <s>BIIAATCH</s> !!!</u></div>

<div class="basebanner"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun-1.jpg" width="997" height="90"/>
</div>

<div class="peepz">
<marquee direction="up" height="325px">
<a href="http://www.myspace.com/bonedatt"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Frank.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a>
<br /></br>
<a href="http://www.myspace.com/insidepairadice"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/juanita.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a>
<br /></br>
<a href="http://www.myspace.com/deuceq"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/block.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a>
<br /></br>
<a href="http://www.myspace.com/jadedone420"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Jade.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a>
<br /></br>
<a href="http://www.myspace.com/82816852"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/gee.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a></marquee></div>

<div class="smalltext">Copyright &copy 2007 S.U.N.O Inc. All right reserved.</div>


<noembed>



The "Navigate" class was written just to test it on the "Friend(s)" link to see if it would work. But it didn't

-Blazey-
 
Clashing
post Jun 11 2007, 11:52 PM
Post #20


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



wow, you have changed around a lot. tongue.gif i'll see what i can do.

i almost got it. hah, that was sooo weird. tongue.gif

by the way, what was the font type you wanted for your links??

Posts merged -alovesopure (Kara)
 
blazey-blazey
post Jun 12 2007, 12:26 AM
Post #21


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Really? Can't wait to see what you did lol.

For the navigation links?..Century Gothic

For all other links?..Georgia

-Blazey-
 
Clashing
post Jun 12 2007, 12:30 AM
Post #22


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



allright, i'll post the code in a bit.

and by the way, what's the position for each of the nav link?? i know its a '100' tops for all of them but what's the left positioning for each of 'em?
 
blazey-blazey
post Jun 12 2007, 12:44 AM
Post #23


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Here you go..

CODE

.home {
left: 30px;
}

.add {
left: 155px;
}

.pix {
left: 285px;
}

.friends {
left: 472px;
}

.message {
left: 650px;
}

.dcomment {
left: 830px;
}



-Blazey-
 
Clashing
post Jun 12 2007, 12:59 AM
Post #24


Senior Member
*****

Group: Member
Posts: 371
Joined: Jun 2007
Member No: 530,773



okayyy, there you go...

CODE
<style type="text/css">
table,tr,td {background-color: 000000;}
table table table table,table table table table td.text, table.contactTable,.whitetext12,.nametext,td.text td.text table,div b font font,div font font u {display: none;}
td.text table,.orangetext15 {visibility: hidden;}
td.text table table {display: inline; visibility: visible;}div table {display:none;}

body {background-color: 000000; scrollbar-face-color: 000000; scrollbar-track-color: 000000; scrollbar-arrow-color: FFFFFF; scrollbar-highlight-color: FFFFFF; scrollbar-3dlight-color: 000000; scrollbar-base-color: 000000; scrollbar-shadow-color: 000000; scrollbar-dark-shadow-color: 000000;}

div.myspace-scroll-box {height: 325px; color: white; font-weight: bold; overflow: scroll;}

.topbanner{position: absolute; top: 0px; left: 0px;}

.cover {width: 301px; height: 20px; position: absolute; top: 139px; left: 50%; margin-left: -368px; background-color: 000000; background-image: none;}

.home {position: absolute; top: 100px; left: 30px; height:25px; width:150px;}

.addme {position: absolute; top: 100px; left: 155px; height:25px; width:150px;}

.pictures {position: absolute; top: 100px; left: 285px; height:25px; width:150px;}

.friends {position: absolute; top: 100px; left: 472px; height:25px; width:150px;}

.messageme {position: absolute; top: 100px; left: 650px; height:25px; width:150px;}

.dropcomments {position: absolute; top: 100px; left: 830px; height:25px; width:150px;}

.content {position: absolute; top: 145px; left: 570px; width: 425px!important; height: 345px!important;}

.playlist {position: absolute; top: 135px; left:0px;}

.afterpl {position: absolute; width: 437px; left: 0px; top: 434px; color: white; font-weight: bold;}

.peepz {position: absolute; top: 145px; left: 450px; width: 110px; height: 325px!;}

.basebanner {position: absolute; top: 474px; left: 0px;}

.content {color: white!important; font-family: Verdana, sans-serif; font-size: 7.5pt;}

a:link img {filter:xray();} a:visited img {filter:xray();} a:hover img {filter:none;}a, a:link, a:visited, a:active {    color: FFFFFF !important;    font-family: Georgia, 'Times New Roman', serif;    font-size: 11px;    font-weight: bold !important;    font-style: italics;}a:hover {        font-size:11px;        text-decoration:underline !important;}a.nav, a.nav:link, a.nav:visited, a.nav:active {    color: white !important;    font-family: 'Century Gothic', Arial, sans-serif !important;    font-size: 11pt !;    font-weight: bold;                   font-style: normal !;    text-decoration: underline !important;    text-transform: none !important;}a.nav:hover {        color: FFFFFF !important;        text-decoration:none !important;}h1 {    color: white;    font-family: Imprint MT Shadow, Impact, sans-serif;    font-weight: normal;    font-size: 20pt;    margin: 0px 0px 3px 0px; padding: 0px;    display: block;    border-bottom: 1px dotted white;                  border-top:1px dotted white;}.smalltext{           position:absolute;           width:300px;           text-align:justify;           top:564px;           left:375px;           font-size:0.8em;           color:FFFFFF;           font-family:verdana;}          td td embed, td td object {position: absolute; top: -500px; left: -500px;}td td td embed, td td td object {position: static !important;}
</style>


CODE
<div class="cover">&nbsp;</div><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun.jpg" width="997" height="90" class="topbanner">
<br><br>

<div class="home"><a href="http://home.myspace.com/index.cfm?fuseaction=user" class="nav">Home</a></div>

<div class="addme"><a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=192366443" class="nav">Add Me</a></div>

<div class="pictures"><a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=192366443" class="nav">Picture(s)</a></div>

<div class="friends"><a href="http://home.myspace.com/Modules/ViewFriends/FriendsView.aspx?friendID=192366443" class="nav">Friend(s)</a></div>

<div class="messageme"><a href="http://messaging.myspace.com/index.cfm?fuseaction=mail.message&friendID=192366443" class="nav">Message Me</a></div>

<div class="dropcomments"><a href="http://comment.myspace.com/index.cfm?fuseaction=user.viewProfile_commentForm&friendID=192366443" class="nav">Drop Comment(s)</a></div>

<div class="content" align="justify"><div class="myspace-scroll-box"><h1>Who is ...S.U.N.O...</h1><a href="http://www.profilesnitch.com"><img src="http://www.profilesnitch.com/tracker13/ZR85WW6L6Z.gif" border="0" width="1" height="1"></a><br /><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/bv_1_1.jpg" width="80" height="80" align="right" style="padding: 5px" />f**k You Need To Know About Me?..I'm That Nigga Waiting For Yo Punk Ass In The Dark Alley On Your Pay Day! So When Next You Get Paid, Stay Out The Dark Alley Or We Gon Be Splittin' That Check (if I feel like it). Ya Dig?!? Oh Don't Get Me Wrong..I Rob Females Too. Just Because You Fine Don't Mean Ima Let You Slide..Shit..f**k That!!! That's The More Reason Ima Rob Yo Ass. Can't Be Pretty and Fly @ The Same Time. Naaah!!!..Not In My Book. Now, Ugly Bitches!!! Count Your Ugly Asses Lucky..Sometimes..Quote "<u>SOMETIMES</u>"..I Let Y'all Slide..Just So Y'all Have Something To Live For.<br> So Mark My Words Muhfukkaz..If I Catch You Walkin' Down That Dark Alley..Best Believe..<U>YOU WILL BE GETTIN' ROBBED</U>..Enjoy! <p><center>One'z.</center><br /></br><h1>A Lil' More..</h1><br />Now To f**k With You <s>Assholes</s>..Remember All That <s>Bullshit</s> That Be On Every One Of You <s>Muhfukka</s>'z Page(s)?!?..That <s>Sexual</s> <s>Orientation</s>..<s>Status</s>..<s>Here For</s>..All That <s>Bullshit</s>..Just Because I am <u>BORED</u>, I Will Give Out a Lil' Information About ...S.U.N.O...<br><br><table border="1" bordercolor="FFFFFF" width="405"><tr align="center"><td colspan="2"><font color="FFFFFF"><b> - Myspace Bullshit -</b></font></td></tr><tr align="center"><td width="50%"><font color="FFFFFF"><b>Name</font></b></td><td width="50%"><font color="FFFFFF"><b>...S.U.N.O...</b></font></td></tr><tr align="center"><td width="50%"><font color="FFFFFF"><b>Zodiac</font></b></td><td width="50%"><font color="FFFFFF"><b>Aquarius</b></font></td></tr><tr align="center"><td width="50%"><font color="FFFFFF"><b>Location</font></b></td><td width="50%"><font color="FFFFFF"><b>New York (718/516)</b></font></td></tr><tr align="center"><td width="50%"><font color="FFFFFF"><b>Race</font></b></td><td width="50%"><font color="FFFFFF"><b>Nigga (Full Blooded Nigga)</b></font></td></tr><tr align="center"><td width="50%"><font color="FFFFFF"><b>Sexual Orientation</font></b></td><td width="50%"><font color="FFFFFF"><b>Straight</b></font></td></tr><tr align="center"><td><font color="FFFFFF"><b>Status</b></font></td><td><font color="FFFFFF"><b>Married (Practically)</b></font></td></tr><tr align="center"><td><font color="FFFFFF"><b>Here For</b></font></td><td><font color="FFFFFF"><b>Boredom..Kill Time</b></font></td></tr><tr align="center"><td><font color="FFFFFF"><b>Body Type</b></font></td><td><font color="FFFFFF"><b>6'0..Athletically Fat</b><font></td></tr><tr align="center"><td><font color="FFFFFF"><b>Fav. Book</b></font></td><td><font color="FFFFFF"><b>I Don't Read (Kryptonite)</b></font></td></tr><tr align="center"><td><font color="FFFFFF"><b>Music</b></font></td><td><font color="FFFFFF"><b>Mostly Hip-Hop</b></font></td></tr></table><br /></br>Let's Get Something Clear..<u>Regardless Of Me Having a Myspace Account, I Still Stand My Ground and Say <s>f**k TOM!!!</s></u> Bwuahahahahaha LOL..Now Watch My Account Get Deleted Soon. <s>Muhfukkaz!!!</s> Only Reazon I Got This Account Was For Viewing Damn Profile Pictures Because Thanx To <s>TOM</s>, One Can't View Pictures Without Having a Damn Account. So I Figured, Since I Got an Account..and I am Bored as a <s>Muhfukka</s>, I Might as Well Go Ahead and Design It. And I Came Up With This Garbage. It is Garbage Because I am Still To Figure Out How These Damn Default Pages Were Made. And I Will Figure It Out..Trust!..<br /></br>That's All I Have To Say To All You Myspace Addicts..Hmm..I Want To Believe That as You All Are So..And I Say This With Every Bit Of Sarcasm.."Smart"..You All Have Figured I am Just Trying To Kill Time and Fill This Page With as Lil' Info as Possible Bwuahahahaha..<br /></br><p><h1>Who ...S.U.N.O... Wants To Meet..</h1><br />Hmm..Who I'd Like To Meet?!?..*rubs chin*..I'd Say My Maker. I Know None Of You f**kers Are Worth Meeting Anyways. Meet One <s>Muhfukka</s> and You've Met Them All..Same as The Next <s>Muhfukkin'</s> Nigga Standing Right Next To You. So If You Ain't My Maker, Ima Tell You Like an <u>"English Prick"</u>, <b><u>BUGGER OFF MATE!!! BLOODY WANKERS!!!</u></b> <br /></br><p><h1>Gratitude To..</h1><br />Umm Ok, Time For The Truth Lol. Whatever Graphix You See On This Page Wasn't Done By Me..I Wish..They Were All Done By My Sis (Malika). See That Nice Looking Banner @ The Top and @ The Bottom?..Yep!..That's Malika's Work. If You Look Closely Or Have a Good Eye, You Will Notice They Both Look a Lil' Distorted. That's Because I Had to Enlarge Them To Fit Across The Page. The Real Sized Images Can Be Found <a href="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun.jpg"  target="_blank">here</a> and <a href="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun.gif" target="_blank">here</a>. I Would've Linked You <s>f**kers</s> To Her Myspace Page, But Her <s>Ass</s> Took it Down..Why?..Personal Reazons..Thanx Though Sis..I Appreciate It :x :x <br /></br><center>A Few Of Malika'z Graphix. Click On Each For a Full View.</center><br /></br><center>Coming Soon..</center><br /></br>LOL Another Truth..Where Did I Get This Layout Idea From? What Idea?..Your Dumb <s>Asses</s> are Probably Askin'. The Idea Of Remaking My Page..To Look Like This and Not The Boring <s>Ass</s> Default Myspace Look Of "Pictures" On The Top Left, "Contact Table" Beneathe That.."Blogs" On The Right.."About Me" Beneathe Blogs.."Details" On The Left Of About Me..You Get The Drift. The Idea Came From My Other <a href="http://myspace.com/insidepairadice" target="_blank">Sis' Page (Juanita)</a>. I Saw It and Was Feeling It. It Wasn't The Regular Myspace Look..So I Asked and I Was Told. Like The Bible Says, <u>Ask and You Shall Receive.</u> Thanx Sis..I Appreciate It :x :x *Evil Ass* Oh and She Does Graphix Too :-) Yep Both My Sis' Do Graphix..I Seem To Be The Only One Who Doesn't..Hmm..f**k That! I'm Good Lol. <br /></br><center>A Few Of Juanita'z Graphix. Click On Each For a Full View.</center> <br /></br><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/therock.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/therock.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/romanceisintheair.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/romanceisintheair.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/sexyrebeltut.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/sexyrebeltut.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-djchick.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-djchick.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/mytwony.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/mytwony.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/DICEY-MYSTIQUE.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/DICEY-MYSTIQUE.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-friscobaby.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-friscobaby.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-sf.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/dice-sf.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a><a href="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/nelly-illknow.jpg" target="_blank"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Juanitaz_Graphix/nelly-illknow.jpg" width="78" height="80" style="border: 2px solid FFFFFF;" /></a></a><br /></br><center><u>:x :x :x LOVE YA BOTH!!! :x :x :x</u></center><br /></br>..To Be Continued..</div></div><div class="playlist"><div style="text-align: center; margin-left: auto; visibility:visible; margin-right: auto; width:450;"><object type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" height="270" width="435" style="width:435px; visibility:visible; height:270px;" border="0" data="http://www.myplaylist.org/mc/mp3player.swf?config=http://www.myplaylist.org/mc/config/config_black_shuffle.xml&mywidth=435&myheight=270&file=http://www.myplaylist.org/loadplaylist.php?playlist=5426135">
  <param name="allowScriptAccess" value="never" />
  <param name="allowNetworking" value="internal" />
  <param name="movie" value="http://www.myplaylist.org/mc/mp3player.swf?config=http://www.myplaylist.org/mc/config/config_black_shuffle.xml&mywidth=435&myheight=270&file=http://www.myplaylist.org/loadplaylist.php?playlist=5426135" />
  <param name="menu" value="false" />
  <param name="quality" value="high" />
  <param name="wmode" value="transparent" />
</object><BR><a href=http://www.myplaylist.org><img src=http://www.myplaylist.org/mc/images/create_black.jpg border=0></a><a href=http://www.myplaylist.org/standalone/5426135 target=_blank><img src=http://www.myplaylist.org/mc/images/launch_black.jpg border=0></a><a href=http://www.myplaylist.org/download/5426135><img src=http://www.myplaylist.org/mc/images/get_black.jpg border=0></a> </div> </div><div class="afterpl"><u>IF THE SONGS ANNOY YOU, SDFU AND PAUSE IT!!! **IF TRACK(S) ON THERE STOPS PLAYING (DIES), PLEASE ONCE AGAIN SDFU ABOUT IT. I WILL HAVE IT/THEM CHANGED LATER!!!** <s>BIIAATCH</s> !!!</u></div><div class="basebanner"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/unlitsun-1.jpg" width="997" height="90"/></div><div class="peepz"><marquee direction="up" height="325px"><a href="http://www.myspace.com/bonedatt"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Frank.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a><br /></br><a href="http://www.myspace.com/insidepairadice"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/juanita.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a><br /></br><a href="http://www.myspace.com/deuceq"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/block.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a><br /></br><a href="http://www.myspace.com/jadedone420"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/Jade.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a><br /></br><a href="http://www.myspace.com/82816852"><img src="http://i81.photobucket.com/albums/j213/jade_berretaz/gee.jpg" width="105" height="105" style="border: 2px solid FFFFFF;" /></a></marquee></div><div class="smalltext">Copyright &copy 2007 S.U.N.O Inc. All right reserved.</div><noembed>
 
blazey-blazey
post Jun 12 2007, 01:06 AM
Post #25


Member
**

Group: Member
Posts: 19
Joined: May 2007
Member No: 525,520



Yeeeaaa!!! Thank You!!!

Lol..why you edit out the curse words though? Thanx a lot though..word! I'm about looking at the whole code now cuz I didn't check it before..just copied and pasted it. What was the problem with it though?

-Blazey-
 

2 Pages V   1 2 >
Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: