Jump to content
Sign in to follow this  
knox

Using firebug to adjust padding above header graphic

Recommended Posts

knox

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×