Forum 'borders' - how?

Zaborg

Web Designer
Joined
Jul 3, 2010
Messages
2,713
Reaction score
2
FP$
5,146
Hey!

I have this little issue with my new custom theme. I don't know how to make forum borders look better. That 1px black line is just too ugly.
(I means these borders around the forum, you know... Like these glassy borders here in FP)

What are my options here?

Thanks!!
 
I would simply remove from your CSS (under #container):
Code:
border-right: 2px solid black;
border-left: 2px solid black;

And under #footer_bar:

Code:
border-bottom: black 2px solid;

Looks much better without the black border (going by what you have in your sig - I presume that's the theme you're developing?).
 
Are you talking about the border of the wrap? If so, I think you should have a border-radius, but also make sure it's compatible with every browser. For example:
Code:
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
 
Back
Top Bottom