Hi,
i have tried to see if this has been answered before but i have found nothing. Sorry if it was written already and it is my bad.
I would like to change the content shadow color or at least to reduce it's opacity while in fixed mode. any chance i can do that? Any code i need to alter?
Thank you
Content Shadow - reduce opacity or color change possible?
Started by
Denis Ciumbargi
, Jul 13 2012 06:30 PM
4 replies to this topic
#1
Posted 13 July 2012 - 06:30 PM
#2
Posted 13 July 2012 - 06:49 PM
There isn't a way to change the shadow color and its opacity in the settings, but you might be able to with CSS. You'll need to disable the content shadow, however, and recreate the shadow effect with CSS for the page canvas.
#3
Posted 14 July 2012 - 12:05 PM
Is there a list of codes somewhere for each element inside the page lines framework ? For example .page-canvas or #pagecanvas in order to apply the style to the certain element?
#4
Posted 14 July 2012 - 04:09 PM
Firebug is the best way to find CSS selectors:
Instructions on how to use it for CSS customizations are here:
#5
Posted 14 July 2012 - 05:09 PM
For anyone that might need this:
.content-shadow.fixed_width .page-canvas{
-webkit-box-shadow: 0px 0px 8px 0px #95adc8;
box-shadow: 0px 0px 8x 0px #95adc8;
Replace #95adc8 with any color of your choice.











