Support Forums

Full Version: [help]Curve edges on tabs[mybb]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I wanted to know how to have curve/round tab edges on my MyBB forum?

I'm using the Tabbed Menu plugin by MyBBcentral.

Sorry if this is the wrong forum. I'm not sure where to post this.

Thanks in advance.
You can go into the .css and try adding this:

Code:
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
Doesn't work.

I tried adding this in tabbed.css> advanced mode and also in tabbed.css> .tabcontent
You need to add it under an existing div.
Can you provide a link to the forum if you can't get what Laugh posted to work for you?
Go to the tabbed.css and add this into the "shadetabs li a"
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
Thanks for all your help guys. The code below worked. I appreciate everyone who took out time to help me out Big Grin

(01-25-2012, 08:44 PM)D4rKn3s5 Wrote: [ -> ]Go to the tabbed.css and add this into the "shadetabs li a"
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;

No problem, and if you want to use that on your forum categories you will need to add that code to tborder(pretty sure it's this one) and thead.
(01-26-2012, 01:30 AM)D4rKn3s5 Wrote: [ -> ]No problem, and if you want to use that on your forum categories you will need to add that code to tborder(pretty sure it's this one) and thead.

No, just add it to table{} and it will cover everything.
Huh? I'm kinda confused.
What would table{} do?
Pages: 1 2