Log In · Register

 
 
Closed TopicStart new topic
remove bar above about me and who i'd like to meet and my blurbs
mikey122
post Aug 9 2008, 02:54 AM
Post #1


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



How would I hid the bar thats left after I removed the extended network box and the blog box? Also how would I remove the part where its says my names' blurbs?

Here's a screenshot that can show the bar that I'd like to remove (it displays it better than I can describe)



Here's the code I used to remove the extended network and the blog

CODE
.latestBlogEntry {display:none}
table.extendednetwork {display: none;}


I believe it should be table.latestBlogentry but I'm not sure
Reason for edit: please thumb large images :) -nat
 
fixtatik
post Aug 9 2008, 07:34 AM
Post #2


Senior Member
******

Group: Member
Posts: 1,237
Joined: May 2008
Member No: 648,123



this might do the trick:
CODE
.extendedNetwork, .latestBlogEntry { border:0; display:none; }
 
mikey122
post Aug 9 2008, 10:54 AM
Post #3


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



nope :(
 
fixtatik
post Aug 9 2008, 09:44 PM
Post #4


Senior Member
******

Group: Member
Posts: 1,237
Joined: May 2008
Member No: 648,123



what does the rest of the coding look like for your layout? that little bar looks like it's just a left over border (you have a 1-pixel grey border around all your tables, right?).
 
mikey122
post Aug 10 2008, 12:37 AM
Post #5


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



CODE
<style>.fcsS{}</style>
<style>

form&gt;img#googleTLogo
{
background-image:url(http://x.myspace.com/images/powered_by_google_white.png);
background-repeat: no-repeat;
}

#googleTLogo
{
vertical-align:bottom;
width:120px;
height:30px;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://x.myspace.com/images/powered_by_google_white.png', sizingMethod='image');
}

</style><style>
body { background-color:000000; background-image:url(http://img.freecodesource.com/myspace-layouts/images/layouts/1177445969-922-1.gif); background-repeat: no-repeat; background-position: top center; background-attachment:fixed; }
table, td { background-color:transparent; border-style:none; }
table table table { width: 100%; border-color:474e50; border-style:solid; border-width:1px; padding:4px; }
table table table td, table table table table { width:auto; border-style:none; background-image:none; }

body, div, p, td, .text, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited { color: dde3e4; font-weight:normal; text-decoration:none; }
.nametext { color: 091315; font-size:18px; font-weight:bold; }
.btext, .orangetext15, .whitetext12 { color: FFFFFF; font-weight:bold; }
strong, .lightbluetext8, .redtext { color: FFFFFF; }
.blacktext10, .blacktext12 { color: 333333; font-size:10px; font-weight: normal; font-style:italic; }
.redbtext, .redlink { color: 566063 !important; }
a, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited { color:FFFFFF; font-weight:bold; text-decoration:none; }
a:hover, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.searchlinkSmall:hover, a.searchlinkSmall:active { color:566063; text-decoration:underline; }

.contactTable {
width:290px !important; height:150px !important; padding:0px !important; background-image:url(http://img.freecodesource.com/myspace-layouts/images/layouts/1177445969-922-2.gif);
background-attachment:scroll; background-position:center center; background-repeat:no-repeat; background-color:transparent; }
.contactTable table, table.contactTable td { padding:0px !important; border:0px; background-color:transparent; background-image:none; }
.contactTable a img { visibility:hidden; border:0px !important; }
.contactTable a { display:block; height:28px; width:115px; }
.contactTable .text { font-size:1px !important; }
.contactTable .text, .contactTable a, .contactTable img { filter:none !important; }
.contactTable .whitetext12 { display:none; }
Reason for edit: it's "[codebox]" not "[code]" :) -nat
 
Mickey
post Aug 10 2008, 02:05 AM
Post #6


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Next time, use [codebox] tags instead of [code] tags for longer scripts. Anyway, try this:

CODE
<style>
.blurbs td.text {display:none;}
.extendedNetwork, .latestBlogEntry {display:none!important; border:0px;}
</style>

That should hide the Blurbs bar/text. Hopefully it hides the border of the Extended Network table as well.
 
mikey122
post Aug 10 2008, 02:33 AM
Post #7


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



thanks anarchy, i actually just spend the last hour tweaking it and got that by myself :)

this may not be pretty but it works

CODE
table.blurbs table  td.text {display:none} td span.orangetext15 {visibility:hidden}

.extendedNetwork, .latestBlogEntry { border:0; display:none; }


seems like I dont need this part of the code above

CODE
<style>.fcsS{}</style>
<style>

form&gt;img#googleTLogo
{
background-image:url(http://x.myspace.com/images/powered_by_google_white.png);
background-repeat: no-repeat;
}

#googleTLogo
{
vertical-align:bottom;
width:120px;
height:30px;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://x.myspace.com/images/powered_by_google_white.png', sizingMethod='image');
}

</style>


now how can I make my name on my profile a specific color?
Reason for edit: it's "[codebox]" not "[code]" :) -nat
 
Mickey
post Aug 10 2008, 02:41 AM
Post #8


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Here's to edit your Display Name:

CODE
<style>
.nametext {font:normal 8pt Arial; color:000000; background-color:ffffff; border:1px solid; border-color:000000; display:block;}
</style>

Just play around with that code until it looks the way you want it. Again, remember to use [codebox] tags instead of [code] tags for longer scripts. Enjoy!
 
mikey122
post Aug 10 2008, 01:29 PM
Post #9


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



thanks, i'll test that out

i'm new to all of this so i just used the code button thingy in the posts heh
 
Mickey
post Aug 10 2008, 02:24 PM
Post #10


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



No problem. thumbsup.gif
 
mikey122
post Aug 11 2008, 02:08 AM
Post #11


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



just an update but i still haven't removed that bar in the screenshot
 
mikey122
post Aug 11 2008, 11:09 AM
Post #12


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



theres just a bar or border thats sitting above the about me section, sort of where the extended network section is
 
schizo
post Aug 11 2008, 11:14 AM
Post #13


Senior Member
******

Group: Staff Alumni
Posts: 2,435
Joined: Feb 2007
Member No: 506,205



Did you try this?

CODE
.extendednetwork {border:none;}


I don't know if that will work, but I don't know why those other codes didn't work for you either.
 
mikey122
post Aug 11 2008, 12:21 PM
Post #14


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



yup, heres the code again for my myspace profile

I'm looking through here and trying to figure out why the border is stil there

CODE
<style>
body { background-color:000000; background-image:url(); background-repeat: no-repeat; background-position: top left; background-attachment:fixed; }
table, td { background-color:transparent; border-style:none; }
table table table { width: 100%; border-color:474e50; border-style:solid; border-width:1px; padding:4px; }
table table table td, table table table table { width:auto; border-style:none; background-image:none; }

body, div, p, td, .text, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited { color: dde3e4; font-weight:normal; text-decoration:none; }
.nametext { color: CC0000; font-size:18px; font-weight:bold; }
.btext, .orangetext15, .whitetext12 { color: FFFFFF; font-weight:bold; }
strong, .lightbluetext8, .redtext { color: FFFFFF; }
.blacktext10, .blacktext12 { color: 333333; font-size:10px; font-weight: normal; font-style:italic; }
.redbtext, .redlink { color: 566063 !important; }
a, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited { color:FFFFFF; font-weight:bold; text-decoration:none; }
a:hover, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.searchlinkSmall:hover, a.searchlinkSmall:active { color:566063; text-decoration:underline; }

.contactTable {
width:290px !important; height:150px !important; padding:0px !important; background-image:url(http://img.freecodesource.com/myspace-layouts/images/layouts/1177445969-922-2.gif);
background-attachment:scroll; background-position:center center; background-repeat:no-repeat; background-color:transparent; }
.contactTable table, table.contactTable td { padding:0px !important; border:0px; background-color:transparent; background-image:none; }
.contactTable a img { visibility:hidden; border:0px !important; }
.contactTable a { display:block; height:28px; width:115px; }
.contactTable .text { font-size:1px !important; }
.contactTable .text, .contactTable a, .contactTable img { filter:none !important; }
.contactTable .whitetext12 { display:none; }


table.blurbs table td.text {display:none} td span.orangetext15 {visibility:hidden}

.extendedNetwork, .latestBlogEntry {border:none; display:none; }
table.blurbs {margin-top:-42px}
 
Jghelfi
post Aug 11 2008, 07:54 PM
Post #15


Senior Senior Member
******

Group: Official Member
Posts: 1,507
Joined: Sep 2007
Member No: 571,541



its probably The Remains of Your BLOGS...

use this..

CODE
<style>.latestblogentry {display:none;}</style>
 
mikey122
post Aug 12 2008, 02:22 AM
Post #16


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



i have it at the end of my profile code
 
Mickey
post Aug 12 2008, 03:01 AM
Post #17


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Replace your codes with this:

CODE
<style>
body { background-color:000000; background-image:url(); background-repeat: no-repeat; background-position: top left; background-attachment:fixed; }
table, td { background-color:transparent; border:0px; }
table table table { width: 100%; border-color:474e50; border-style:solid; border-width:1px; padding:4px; }
table table table td, table table table table { width:auto; border-style:none; background-image:none; }

body, div, p, td, .text, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited { color: dde3e4; font-weight:normal; text-decoration:none; }
.nametext { color: CC0000; font-size:18px; font-weight:bold; }
.btext, .orangetext15, .whitetext12 { color: FFFFFF; font-weight:bold; }
strong, .lightbluetext8, .redtext { color: FFFFFF; }
.blacktext10, .blacktext12 { color: 333333; font-size:10px; font-weight: normal; font-style:italic; }
.redbtext, .redlink { color: 566063 !important; }
a, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited { color:FFFFFF; font-weight:bold; text-decoration:none; }
a:hover, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.searchlinkSmall:hover, a.searchlinkSmall:active { color:566063; text-decoration:underline; }

.contactTable {
width:290px !important; height:150px !important; padding:0px !important; background-image:url(http://img.freecodesource.com/myspace-layouts/images/layouts/1177445969-922-2.gif);
background-attachment:scroll; background-position:center center; background-repeat:no-repeat; background-color:transparent; }
.contactTable table, table.contactTable td { padding:0px !important; border:0px; background-color:transparent; background-image:none; }
.contactTable a img { visibility:hidden; border:0px !important; }
.contactTable a { display:block; height:28px; width:115px; }
.contactTable .text { font-size:1px !important; }
.contactTable .text, .contactTable a, .contactTable img { filter:none !important; }
.contactTable .whitetext12 { display:none; }


td.text .orangetext15, .blurbs td.text {visibility:hidden; display:none; border:0px;}

.extendedNetwork, .latestBlogEntry, .tdborder {visibility:hidden; display:none; border-width:0px;}
table.blurbs {margin-top:-42px; background-color:000000;}
</style>

First, I made your tables the same size. Next, I added a black background to the Blurbs table. Since you brought it up and it covers the Extended Network and Latest Blog Entry tables, the border doesn't appear.

Enjoy. thumbsup.gif
 
mikey122
post Aug 12 2008, 12:52 PM
Post #18


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



thanks, can you highlight the part you changed? I'm learning more and more about tweaking my profile just by making simple changes\

works great except now I have no contact table and a general table :(
 
Mickey
post Aug 12 2008, 01:45 PM
Post #19


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



CODE
<style>
body { background-color:000000; background-image:url(); background-repeat: no-repeat; background-position: top left; background-attachment:fixed; }
table, td { background-color:transparent; border:0px; }
table table table { width: 100%; border-color:474e50; border-style:solid; border-width:1px; padding:4px; }
table table table td, table table table table { width:auto; border-style:none; background-image:none; }

body, div, p, td, .text, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited { color: dde3e4; font-weight:normal; text-decoration:none; }
.nametext { color: CC0000; font-size:18px; font-weight:bold; }
.btext, .orangetext15, .whitetext12 { color: FFFFFF; font-weight:bold; }
strong, .lightbluetext8, .redtext { color: FFFFFF; }
.blacktext10, .blacktext12 { color: 333333; font-size:10px; font-weight: normal; font-style:italic; }
.redbtext, .redlink { color: 566063 !important; }
a, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited { color:FFFFFF; font-weight:bold; text-decoration:none; }
a:hover, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.searchlinkSmall:hover, a.searchlinkSmall:active { color:566063; text-decoration:underline; }

.contactTable {
width:290px !important; height:150px !important; padding:0px !important; background-image:url(http://img.freecodesource.com/myspace-layouts/images/layouts/1177445969-922-2.gif);
background-attachment:scroll; background-position:center center; background-repeat:no-repeat; background-color:transparent; }
.contactTable table, table.contactTable td { padding:0px !important; border:0px; background-color:transparent; background-image:none; }
.contactTable a img { visibility:hidden; border:0px !important; }
.contactTable a { display:block; height:28px; width:115px; }
.contactTable .text { font-size:1px !important; }
.contactTable .text, .contactTable a, .contactTable img { filter:none !important; }
.contactTable .whitetext12 { display:none; }


td.text .orangetext15, .blurbs td.text {visibility:hidden; display:none; border:0px;}

.extendedNetwork, .latestBlogEntry, .tdborder {border:none; display:none;}
table.blurbs {margin-top:-42px; background-color:000000;}
</style>

The text in bold is what I added/edited in your code to get that result. (They're at the bottom.)

I added .tdborder to make your tables the same width, but it removed your contact box and general table as well. Remove it to make them show, and don't worry. The border still won't show behind the Blurbs table.
 
mikey122
post Aug 12 2008, 02:58 PM
Post #20


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



the bold didn't show up but i see it now when i paste it into word

i'll try that and see what happens

what is td.text?

this line that you added basically remove the about me, who'd i'd like to mee text right?

td.text .orangetext15, .blurbs td.text {visibility:hidden; display:none; border:0px;}
 
Mickey
post Aug 12 2008, 07:45 PM
Post #21


Treasure Pleasure
********

Group: Head Staff
Posts: 11,193
Joined: Oct 2005
Member No: 281,127



Yes, that's what that line is for. Also, td.text is a specific class of text. When combined with .orangetext15 and .blurbs, it removes the Blurbs, About Me, and Who I'd Like To Meet titles.

Pasted it on Word for what? The codes I put up weren't meant for you to try out. I only reposted them and bolded what I changed in your codes so you can see what I did, like you requested.
 
mikey122
post Aug 13 2008, 12:02 AM
Post #22


Member
**

Group: Member
Posts: 15
Joined: Aug 2008
Member No: 675,635



the codebox tag doesn't allow you to bold stuff i think cuz i couldn't see it until i posted it into word

thanks for all the help you did!

just a status update but this has been solved so the admins/mods can move it now :)
 
manny-the-dino
post Aug 13 2008, 12:06 AM
Post #23


Senior Member
*******

Group: Administrator
Posts: 8,629
Joined: Jan 2007
Member No: 498,468



Topic Closed & Moved
 

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