[help]Curve edges on tabs[mybb] - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Webmaster Support (https://www.supportforums.net/forumdisplay.php?fid=36) +---- Forum: Website Development (https://www.supportforums.net/forumdisplay.php?fid=43) +---- Thread: [help]Curve edges on tabs[mybb] (/showthread.php?tid=24824) Pages:
1
2
|
[help]Curve edges on tabs[mybb] - kamz89 - 01-25-2012 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. RE: [help]Curve edges on tabs[mybb] - Peter L - 01-25-2012 You can go into the .css and try adding this: Code: border-radius:3px; RE: [help]Curve edges on tabs[mybb] - kamz89 - 01-25-2012 Doesn't work. I tried adding this in tabbed.css> advanced mode and also in tabbed.css> .tabcontent RE: [help]Curve edges on tabs[mybb] - Peter L - 01-25-2012 You need to add it under an existing div. RE: [help]Curve edges on tabs[mybb] - AceInfinity - 01-25-2012 Can you provide a link to the forum if you can't get what Laugh posted to work for you? RE: [help]Curve edges on tabs[mybb] - D4rKn3s5 - 01-25-2012 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; RE: [help]Curve edges on tabs[mybb] - kamz89 - 01-26-2012 Thanks for all your help guys. The code below worked. I appreciate everyone who took out time to help me out (01-25-2012, 08:44 PM)D4rKn3s5 Wrote: Go to the tabbed.css and add this into the "shadetabs li a" RE: [help]Curve edges on tabs[mybb] - D4rKn3s5 - 01-26-2012 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. RE: [help]Curve edges on tabs[mybb] - Peter L - 01-26-2012 (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. RE: [help]Curve edges on tabs[mybb] - kamz89 - 01-27-2012 Huh? I'm kinda confused. What would table{} do? |