There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
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
#2
Jan 27, 2011, 06:48 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
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;
}
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
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;}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
Last edited by juggledad; Jan 27, 2011 at 07:00 PM.
#4
Jan 28, 2011, 10:15 AM
Alcatraz
10 posts · Nov 2010
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;
}