Hi. I looked at your site, it's helpful to use a browser plug-in like firebug or use the "Inspect Element" option offered in Chrome or Safari to identify the div id's for your tabs.
I do. I use Firefox with Firebug.In your case, the tabs created by K2 are divs with individual id's. Your DS/DSi tab has an ID of "tabber64_div_1" - see my attachment to see the output code for your tabs.
Once you know the id, you can style it anyway you wish in your style sheet, for example:
div#tabber64_div_1{background:black;}
That should change your DS/DSi tab to a black background without affecting the other 2.
If you want to style all of them the same, you would use the class name
div.simpleTabsContent{background:black;}
I appreciate you pointing that out. I was able to style the tabs, but I didn't know how to style each one individually. Now that I know they have individual IDs, I can do that. Thanks!As far as tables vs. divs goes. I think in this case, it's okay to use a table. You are presenting tabular data, that's what tables are for. You just shouldn't use tables to create your website layout.
OK, cool. That's good to know then.Beyond that, I think it looks good. It is very simple, which is fine. Some simple changes would include background color or images, adding borders or box-shadows - just google for the CSS if you don't know it. Hope this helps.
I appreciate your feedback. I think simple is great sometimes. The last thing I want is to provide overkill for my site and users.