knox 0 Report post Posted January 4, 2011 I watched the video to learn how to use firebug to adjust css. It showed this: .content-pad { padding: 25px 0 25px 15px; } I changed to .content-pad { padding: 0px 0 10px 15px; } and it looked perfect Went to the custom css field and pasted that in and saved. It didn't take. Checked the css again and it had both: .content-pad { padding: 25px 0 25px 15px; } theme.css (line 373) .content-pad { padding: 0 0 10px 15px; } dynamic.css (line 99) But the "new" css had a strikethrough. Am unclear as to what I did wrong. How can I correct this, please? Thank you. p.s. LOVE Pagelines! Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 5, 2011 sure, this shouldn't be too hard. This is more than likely a 'specificity' issue. That's what the strikethrough is about, try adding a descriptor or two out front: `body #page .content-pad {...}` Just remember the content pad element is used in every content-wide section, so this rule will be applied to all Share this post Link to post Share on other sites
knox 0 Report post Posted January 5, 2011 Thank you. That worked. I'm sure I'll other questions. Thanks for the support. I'm already planning on using Pagelines for a couple clients and have recommended to another developer. Share this post Link to post Share on other sites