karmatrinlay 0 Report post Posted May 1, 2012 I can't seem to find the right attribute. I want to put background color behind Pagelines Boxes. Not the individual boxes, but the wrapper. It doesn't seem to be: plgrid-pad, grid-row Is it #boxes or section-boxes This morning I've learned: Don't try to do this with a migraine.... you'll just pester the support experts... Share this post Link to post Share on other sites
Henry Perkins 14 Report post Posted May 1, 2012 In your wordpress admin, you can go to the page you have your boxes displayed on and give the particular box section a CSS class. On the Page Edit screen, under Pagelines Meta Options > Boxes > Custom CSS Class For example, I enter 'homepage-boxes' (without quotes) Then, in my style.css in either my Base Theme or Pagelines-Customize plugin I apply the appropriate CSS to give those boxes a background. Something like.. .homepage-boxes { background-color: #AAAAAA; } @henry_rly Share this post Link to post Share on other sites
Rob 547 Report post Posted May 1, 2012 I found this works: [code].pprow { background-color: #C00000; margin: 0 auto; width: 100%; }[/code] The background color, #C00000 (deep red) can be any color, but depending on the background color selected, you'll need to adjust the font and links color. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
karmatrinlay 0 Report post Posted May 1, 2012 I completely forgot about the custom css field there. Thanks! Share this post Link to post Share on other sites