How to change font style in Tabber Widget tab?
Started by
elucia
, Apr 09 2011 06:35 PM
9 replies to this topic
#1
Posted 09 April 2011 - 06:35 PM
Hi there
http://wordpressbygirlfriday.com/hcdg/our-dentists
The font for the dentists is in italics and I would like it to have No Style. I am also planning on using the Tabber Widget on the home page, and the titles are in italics there, too (http://wordpressbygirlfriday.com/hcdg/)
I'm looking in the style sheet for Tabber Widget template (it's called "rounded-light.css) but do not see where I can adjust this...?
thanks for your help!
Elaine
http://wordpressbygirlfriday.com/hcdg/our-dentists
The font for the dentists is in italics and I would like it to have No Style. I am also planning on using the Tabber Widget on the home page, and the titles are in italics there, too (http://wordpressbygirlfriday.com/hcdg/)
I'm looking in the style sheet for Tabber Widget template (it's called "rounded-light.css) but do not see where I can adjust this...?
thanks for your help!
Elaine
#2
Posted 11 April 2011 - 08:21 AM
Hi,
You can just add it to the end of your themes stylesheet.
Please let us know how this works out for you.
Josh
You can just add it to the end of your themes stylesheet.
.tabber-widget-tabs a {
font-style: normal;
}
Please let us know how this works out for you.
Josh
Hey if you haven't looked at the ithemes and pluginbuddy codex check it out here!
There are some plugin walkthrough videos on our youtube channel check it out!
There are some plugin walkthrough videos on our youtube channel check it out!
#4
Posted 16 May 2011 - 06:41 PM
Hi – I want to do the exact same thing as Girl Friday but for some reason it won't work for me. I tried putting the code in the style.css of my chled theme and that didn't work so then I put it into the tabber rounded-light.css and that didn't work either — am I doing something wrong?
Please let me know, THX! Sherry
http://bh.sherrybrimacombe.com/
Also! I would like to know how to get rid of the bottom padding or margin (whatever it is) so the bottom of the tab does not have that brown line – would also like to make the top have less padding too – about half of what's there.
Plus one more thing -- is it possible to get rid of the little black arrows?
Please let me know, THX! Sherry
http://bh.sherrybrimacombe.com/
Also! I would like to know how to get rid of the bottom padding or margin (whatever it is) so the bottom of the tab does not have that brown line – would also like to make the top have less padding too – about half of what's there.
Plus one more thing -- is it possible to get rid of the little black arrows?
Edited by Sherry Brimacombe, 16 May 2011 - 05:10 PM.
#5
Posted 16 May 2011 - 11:58 PM
@Sherry
Add the following at the end of child theme's style.css:
Add the following at the end of child theme's style.css:
ul.tabber-widget-tabs {
list-style: none;
}
ul.tabber-widget-tabs a {
font-style: normal;
}
.tabber-widget-content img, .tabber-widget-content p {
padding-top: 0 !important;
}
.tabber-widget-rounded-light .tabber-widget-content {
background: transparent !important;
}
#tabber_widget-3 {
padding-top: 0.8em;
}
#7
Posted 17 May 2011 - 09:34 PM
Child theme css is better because plugin's css will be overwritten during plugin upgrade.
#8
Posted 20 May 2011 - 12:54 PM
Hi Srihdar -- well that sounds right ... ok... so attached is a copy of the tabber css file that I'm using on the site above with my edits. How do I incorporate them into my child theme css so that I can reinstall tabber to it's original version?
Thanks so much for your help!
Sherry
(sorry but I didn't know how to upload the .css file...)
/*
Name: Rounded Corners Light
Class: tabber-widget-rounded-light
Note: Rounded corners are not supported in Internet Explorer 6, 7, or 8.
Notice: If the Class changes or the file is renamed, you must resave all widgets that use this template.
*/
/* SHERRY edited this for Bryce */
/* Style Tabs */
.tabber-widget-rounded-light {
color: #000;
padding: 0 !important;
margin: 0 !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs {
list-style-type: none;
padding: 0 !important;
margin: 0 !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs li {
float: left;
list-style-type: none !important;
padding: 0 !important;
margin: 0 !important;
border: none;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs li:before {
content: "" !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a {
display: block;
/*padding: 6px 10px;*/
padding: 8px 18px;
font-size: 1em;
text-decoration: none !important;
/*margin: 1px;*/
margin: 6.5px;
margin-left: 0;
color: #000;
/*background: #444;*/
background: #d1ac7a;
-moz-border-radius: 5px 5px 0px 0px;
-khtml-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a:hover {
/*color: #FFF;*/
color: #e3c8a3;
/*background: #111;*/
background: #77562a;
-moz-border-radius: 5px 5px 0px 0px;
-khtml-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a.selected,
.tabber-widget-rounded-light ul.tabber-widget-tabs a.selected:hover {
margin-bottom: 0;
color: #fff;
/*background: snow;*/
background: #000000;
/*border-bottom: 1px solid snow;*/
/*cursor: default;*/
}
.tabber-widget-rounded-light .tabber-widget-content {
/*padding: 10px 10px 8px 10px;*/
padding: 0 !important;
margin: 0;
clear: both;
/*background: snow;*/
background: #77562a;
}
/* Style Content */
.tabber-widget-rounded-light .tabber-widget-content {
text-align: left;
}
.tabber-widget-rounded-light .tabber-widget-content .tabber-widget-title {
margin-top: 0;
}
.tabber-widget-tabs a {
font-style: normal;
}
Thanks so much for your help!
Sherry
(sorry but I didn't know how to upload the .css file...)
/*
Name: Rounded Corners Light
Class: tabber-widget-rounded-light
Note: Rounded corners are not supported in Internet Explorer 6, 7, or 8.
Notice: If the Class changes or the file is renamed, you must resave all widgets that use this template.
*/
/* SHERRY edited this for Bryce */
/* Style Tabs */
.tabber-widget-rounded-light {
color: #000;
padding: 0 !important;
margin: 0 !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs {
list-style-type: none;
padding: 0 !important;
margin: 0 !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs li {
float: left;
list-style-type: none !important;
padding: 0 !important;
margin: 0 !important;
border: none;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs li:before {
content: "" !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a {
display: block;
/*padding: 6px 10px;*/
padding: 8px 18px;
font-size: 1em;
text-decoration: none !important;
/*margin: 1px;*/
margin: 6.5px;
margin-left: 0;
color: #000;
/*background: #444;*/
background: #d1ac7a;
-moz-border-radius: 5px 5px 0px 0px;
-khtml-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a:hover {
/*color: #FFF;*/
color: #e3c8a3;
/*background: #111;*/
background: #77562a;
-moz-border-radius: 5px 5px 0px 0px;
-khtml-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a.selected,
.tabber-widget-rounded-light ul.tabber-widget-tabs a.selected:hover {
margin-bottom: 0;
color: #fff;
/*background: snow;*/
background: #000000;
/*border-bottom: 1px solid snow;*/
/*cursor: default;*/
}
.tabber-widget-rounded-light .tabber-widget-content {
/*padding: 10px 10px 8px 10px;*/
padding: 0 !important;
margin: 0;
clear: both;
/*background: snow;*/
background: #77562a;
}
/* Style Content */
.tabber-widget-rounded-light .tabber-widget-content {
text-align: left;
}
.tabber-widget-rounded-light .tabber-widget-content .tabber-widget-title {
margin-top: 0;
}
.tabber-widget-tabs a {
font-style: normal;
}
#9
Posted 20 May 2011 - 12:58 PM
Quote
How do I incorporate them into my child theme css so that I can reinstall tabber to it's original version?
Copy all the code and paste it at end of child theme's style.css.
If you find (using Firebug of course) that styles in in style.css are getting overridden by plugin's, use !important for style rules in style.css.
Reply to this Topic
ATTENTION
If this topic is marked RESOLVED or INFORMATION, or if you are NOT experiencing EXACTLY the same issue, please start a new topic to provide the details of your problem. If the solution provided doesn't work for you, you should start a new topic. If you feel this thread contains relevant information, you may include a link to it in your new topic. To ensure that we can process your support request efficiently, ALWAYS include a link to your site, and/or the page your request is related to. When posting your question or request on the forum, please be as concise and specific as possible. The shorter and more to the point you can make your request, the better.
For BackupBuddy related issues, be sure to include the status log from your most recent backup.
CLICK HERE to start a new topic in the Tabber-Widget Plugin forum.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users





