Hello,
Using Firebug, I am able to modify the layout which corresponds to <div class = "widget-pad">...the column of text on the left side of .
After these modifications are made, I have the following CSS:
element.style {
height: 20px;
padding-left: 350px;
padding-top: 20px;
width: 250px;
}
However, when I copy and paste this to Custom CSS, the change which was visible in Firebug does not take effect.
Please advise.
Thanks.
Using Firebug to Alter Page Layout
Started by
tim4708
, Mar 06 2011 08:10 AM
3 replies to this topic
#1
Posted 06 March 2011 - 08:10 AM
#2
Posted 06 March 2011 - 07:01 PM
The CSS for the text column is actually div.textwidget instead of element.style, so that may be why the CSS isn't working. Where did you find the element.style CSS?
#3
Posted 07 March 2011 - 01:52 AM
div.textwidget{
height: 594px;
padding-left: 350px;
padding-top: 20px;
width: 960px;
}
#4
Posted 07 March 2011 - 01:59 AM
Thanks, I added the above and it worked.
I found the element.style CSS under <div class = "widget-pad">
Firebug -> Style











