Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Sidebars & Widgets (http://forum.bytesforall.com/forumdisplay.php?f=14)
-   -   [SOLVED] Changing Styling for widget in only one sidebar (http://forum.bytesforall.com/showthread.php?t=12487)

Alcatraz Jan 27, 2011 04:30 PM

[SOLVED] Changing Styling for widget in only one sidebar
 
Hi Im using WP 3.04 and Ata 353. I am using widgets in both my right sidebar and inner right sidebar, but I want to remove the border from the widgets displaying in only the inner right sidebar. If I change the border width to 0 in 'Style Widgets' all the borders in the widgets on every sidebar disappear, is it possible to just change the border for the widgets in my inner right sidebar? Thanks

lmilesw Jan 27, 2011 06:48 PM

You would have to build you own CSS. For the right inner is would be something like the following
HTML Code:

#right-inner .widget {
border: none;
}


juggledad Jan 27, 2011 06:50 PM

sure, you will have to create a CSS Selector specifying the inner sidebar and a CSS rule to get rid of the border. something like
HTML Code:

#right-inner .widget {border: solid 0px #000;}

Alcatraz Jan 28, 2011 10:15 AM

I placed this code in the CSS/HTML Insert after finding the div id which worked
Code:

div#text-14 {
... /* style for the whole widget */
border: none;
}

Thanks for your responses


All times are GMT -6. The time now is 10:06 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.