[css-d] How to control width via CSS

2010-02-09 Thread MarvinC
Anyone know the best way to change or control the width of a frame via CSS? I'm trying to modify the default look of the WordPress Rotating Post plugin but can't seem to increase or decrease the width of the frame. I can modify height via the highlighted options below but can't seem to decrease the

Re: [css-d] How to control width via CSS

2010-02-10 Thread Troy Harshman
I'm not familiar with the rotating post plugin, does it use frames? If not, WordPress doesn't use frames. It uses PHP to dynamically create pages. Also, it looks like you're using the default theme since you have . Narrowcolumn is an element in the default theme's stylesheet, so you may get your de

Re: [css-d] How to control width via CSS

2010-02-10 Thread MarvinC
I caught on to that after sending the email. The plugin author was using the Kubrik theme as an example tis why it didn't work on my theme. I don't think it uses frames and the author provided a stylesheet to modify, I just can't seem to make this basic changes to get this to fit in with my theme.

Re: [css-d] How to control width via CSS

2010-02-10 Thread David Laakso
MarvinC wrote: > I caught on to that after sending the email. The plugin author was using the > Kubrik theme as an example tis why it didn't work on my theme. > I don't think it uses frames and the author provided a stylesheet to modify, > I just can't seem to make this basic changes to get this to

Re: [css-d] How to control width via CSS

2010-02-10 Thread Troy Harshman
The best way to tackle this would be to view the source for the page from your browser. Note all of the elements involved in the trouble area and go through your styles and see what's going on with each of them. Keep in mind that WordPress also dynamically assigns classes as well, so you'll want to

Re: [css-d] How to control width via CSS

2010-02-10 Thread MarvinC
http://www.nusolutions.biz/demos/dg/gfa/ The top system is the one I'm trying to customize. Basically what I'm trying to do is decrease the width to match that of my other two boxes and add a "heading?" for the title and a different one for the buttons. So the title heading may be a red background

Re: [css-d] How to control width via CSS

2010-02-10 Thread Climis, Tim
> what I'm trying to do is decrease the width to match that of my other two > boxes You're not setting a width anywhere. If you want to make the container the same width as the others, you need to either specify a width or margins on #rp_frame. But also, you have 4 boxes in the column on that

Re: [css-d] How to control width via CSS

2010-02-10 Thread David Hucklesby
On 2/10/10 8:09 AM, MarvinC wrote: > http://www.nusolutions.biz/demos/dg/gfa/ > > The top system is the one I'm trying to customize. Basically what I'm > trying to do is decrease the width to match that of my other two > boxes and add a "heading?" for the title and a different one for the > buttons