seecue 0 Report post Posted July 13, 2012 Site is not live -- I am developing on local server. Home page: have cloned Boxes in the content area. Have entered a custom class for Boxes 2 in the page meta. (news_boxes) Have entered custom css for this class in PageLines customize plugin. .news_boxes { border-bottom: 1px solid #000000; padding: 10px; } .news_boxes h1 { font-size:100%; color: #0c3f6e; } Custom CSS not showing up, and Firebug not indicating that the custom class has been applied. I have screenshots I can send. Any thoughts? Thanks for the help. Share this post Link to post Share on other sites
catrina 103 Report post Posted July 13, 2012 Try adding !important declarations at the end of the attributes. Example: [code]border-bottom: 1px solid #000000 !important;[/code] Can you please post the screenshots? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
seecue 0 Report post Posted July 13, 2012 It appears that the custom class "news_box" has been appended to the pagelines class "plgrid". So the style is applied to the box group, not the individual boxes. So, in trying to add a background color (green) to the boxes, the result can be seen in the enclosed screen shot... [img]http://cq-graphics.com/Screen_Shot.png[/img] Share this post Link to post Share on other sites
Rob 547 Report post Posted July 13, 2012 The CSS element must be box-specific if you want it to apply to individual boxes. Such as news_box-1 and news_box-2, otherwise, if all the boxes use the same element, the browser reads that all the boxes use the same element, so it applies it to a higher level... in this case, the box group. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites