MyBB Community Forums

Full Version: Is it possible to not round tborder in thread display?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://forumsource.org

[Image: erroruc.png]

As you can see, because I've rounded the top border of the tborder, it now also rounds it in thread display and makes it look a little weird... Is there any possible way of making it so in thread display it doesn't round like that and just stays sharp so it looks like it usually does? If anyone knows anything, please help, I'd really appreciate it.
Remove:

border-top-left-radius: 8px;
border-top-right-radius: 8px;

from the thead class.
I don't have that in my thead class, this is what I have:

.thead {
	background: #026CB1 url(images/ex/thead_bg.gif) top left repeat-x;
	color: #ffffff;
        height:35px;
        -moz-border-radius-topleft: 8px;
        -moz-border-radius-topright: 8px;        
        -webkit-border-top-left-radius: 8px;
        -webkit-border-top-right-radius: 8px;
}

I removed:

        -moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;

Because that was the closest thing to what you said, but it didn't work.
remove all radius codes
-moz-border-radius-topleft: 8px;
 -moz-border-radius-topright: 8px;        
 -webkit-border-top-left-radius: 8px;
 -webkit-border-top-right-radius: 8px;
AND hard refresh your browser !!
(2011-08-08, 04:02 AM)ranjani Wrote: [ -> ]remove all radius codes
-moz-border-radius-topleft: 8px;
 -moz-border-radius-topright: 8px;        
 -webkit-border-top-left-radius: 8px;
 -webkit-border-top-right-radius: 8px;
AND hard refresh your browser !!

That would work, but then it would look weird in the index since my thead is rounded at the top and when tborder isn't, it ruins everything... I'm trying to figure out if it's possible to round the tborder on the index, but not in thread display, that way things don't look off (in the picture above).
Does anyone know how to fix this?

I've tried just about everything.
This thread has been resolved, I decided to just use sharp corners rather then rounded.