srussel2 0 Report post Posted July 23, 2012 Hey you cool cats, Me and my noob self are totally baffeled by this... how do you get a line break with an "embossed look"? Like here: http://demo.pagelines.com/framework/theming/ Notice how under the titles (methods, child theme structure, etc) there is a line break. I don't even know the correct code to get this to show up. Help? Thanks! Share this post Link to post Share on other sites
Rob 547 Report post Posted July 23, 2012 You need to apply something like this to the right element: [code]border-bottom: 1px solid #CCCCCC; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);[/code] Probably [code]hr {border-bottom: 1px solid #CCCCCC; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);}[/code] Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
srussel2 0 Report post Posted July 24, 2012 Awesome thanks! Share this post Link to post Share on other sites