Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Locked Topic
[Solved] Bar Boarder remove
Topic Started: Oct 19 2009, 09:45 AM (148 Views)
ste_macca
Member Avatar
Member
[ *  * ]
How do i remove the blue boarder line from the red bar in the following picture.

Posted Image



lfc



Offline Profile Goto Top
 
Codes Rock
Member Avatar
<?php echo 'Codes Rock rocks!'; ?>
[ *  *  * ]
It looks to be this part of your css:

Code: HTML
 

thead th {
border:1px solid #5a70b3;
border-bottom-width:1px;
padding:5px;
text-align:center;
}


The border: 1px solid #5a70b3; part.

Hex color code #5a70b3 is Laven Blue or
Posted Image

...................

on another note, your missing a colon in your css that is rather important:

Code: HTML
 

td {
background #4D4D4D;
color:#333;
padding:5px 10px;
}

note the missing : after the word background

You have a few errors in your css that you might want to take a look at.
Offline Profile Goto Top
 
ste_macca
Member Avatar
Member
[ *  * ]
Thanks.

Were about shall i put the missing colon in the css area?
Offline Profile Goto Top
 
Lout
Member Avatar
Member
[ *  *  *  * ]
ste_macca
Oct 21 2009, 06:44 AM
Thanks.

Were about shall i put the missing colon in the css area?
Change this:-
Code:
 
td {
background #4D4D4D;
color:#333;
padding:5px 10px;
}


to this:-
Code:
 
td {
background:#4D4D4D;
color:#333;
padding:5px 10px;
}
Offline Profile Goto Top
 
ste_macca
Member Avatar
Member
[ *  * ]
Thanks again.

Only thing i don't understand now is the errors Codes Rock pointed out in the link he made. Any help anyone?
Offline Profile Goto Top
 
Lout
Member Avatar
Member
[ *  *  *  * ]
This very page throws up 8 errors when you put it into that site, my forum threw up 12 and another one I tried gave 14 so I should think it's probably nothing to worry too much about.
Offline Profile Goto Top
 
ste_macca
Member Avatar
Member
[ *  * ]
ok

thank you
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Theme & CSS Help · Next Topic »
Locked Topic