I need to hide this one line "Test Page's Friends Comments" |
I need to hide this one line "Test Page's Friends Comments" |
![]()
Post
#1
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 123 Joined: Nov 2008 Member No: 698,881 ![]() |
If you go to my test page: http://www.myspace.com/frucatestpage
and go down to the comments header you'll see this small white line. I need to hide that. It says "Test Page's Friends Comments" Is there a code to hide that little line? Thanks Nate |
|
|
![]() |
![]()
Post
#2
|
|
![]() Mel Blanc was allergic to carrots. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 6,371 Joined: Aug 2008 Member No: 676,291 ![]() |
Do you already have the code that made the text tiny? If so, simply add the below to the CSS properties of that code that makes the text tiny:
CODE color:#000000; That should make the text black and appear "hidden". :thumsbup: EDIT: I took a quick look at the source code, are you using this to make the text small? CODE <style> .orangetext15{display:none} </style> If so, try replacing that with this: CODE <style>
.orangetext15{display:none; color:#000000;} </style> |
|
|
![]()
Post
#3
|
|
![]() Mel Blanc was allergic to carrots. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 6,371 Joined: Aug 2008 Member No: 676,291 ![]() |
^oh, man. I never knew that. D:
|
|
|
![]()
Post
#4
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 123 Joined: Nov 2008 Member No: 698,881 ![]() |
I tried the .orangetext code but that didn't work. here's the comment section's code. See if this makes it easier to spot.
CODE <style>
html body.bodyContent table tbody tr td table.friendsComments{ width: 770px !important; margin: 0 !important; padding: 0 !important; overflow: hidden !important; background-color: transparent !important; margin: 20px 15px 0px 0px !important; _width: 770px !important; } html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table{ width: 100% !important; border-collapse: separate !important; border-spacing: 0px 0px !important; background-color: transparent !important; height: auto !important; } table.friendsComments tbody tr td.text table tbody tr td span.orangetext15{ background-image: url(http://i382.photobucket.com/albums/oo268/dygynomi/2009%20LETTERBOX%20TRAGEDY/commentline9.jpg); background-repeat: no-repeat !important; background-color: transparent; display: block !important; height: 216px !important; color: ffffff!important; width: 948px; position: relative; overflow: hidden; font-size: 1px; text-align: right; margin-top: 0px; line-height: 300px !important; _width: 948px !important; _height: 216px !important; _margin-bottom: -1px !important; } html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td b{ display: block; position: absolute; z-index: 9; width: 780px; height: 15px; line-height: 15px; overflow: hidden; margin: -27px 0 0 8px; text-align: right; padding-right: 12px !important; color: ffffff; font-weight: normal; font-size: 10px; _margin: -27px 0 0 8px; _font-size: 10px !important; _color: ffffff; } html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td span.blacktext10 { color: ffffff!important; text-transform: None !important; display: block !important; font-size: 12px; font-family: arial, sans-serif !important; font-weight: normal; letter-spacing: 1px; text-align: right; margin: 0px 0px -29px 0px !important; _margin: 15px 0px -.5em 0px !important; width: 640px; } html body.bodyContent table tbody tr td table.friendsComments tbody tr td.text table tbody tr td table tr td.columnsWidening { padding-left:32px; _padding-left:50px; } </style> |
|
|
![]()
Post
#5
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 123 Joined: Nov 2008 Member No: 698,881 ![]() |
ah i found it, it was the ffffff; under the comment pics URL, i just changed it to 000000;
nice. thanks guys! |
|
|
![]() ![]() |