I'm trying to work with Actinic and not against it but.....
I want to have a simple background image so i have created a 918 px wide / 5 px high image and added it to actinic css in the very first body declaration
ok not bad, except my bg image doesn't show in FF, but does show in IE and i would like to also use the background colour (actinic seems to make them mutually exclusive) I want the bg colour so I am multi res compatible, so i'll remove the block if or add bg colour to the bg dec.
I'm using css to define my site as 900 px wide so I have a #wrapper defining that.
So my Q is what is the best way to get a bg image into the site, centred
see attached image, i'm tryin gto get the drop shadow on the left/right ofthe body to work
Second
I want to have a simple background image so i have created a 918 px wide / 5 px high image and added it to actinic css in the very first body declaration
Code:
/* begin general styles for all themes */ html,body { margin: 0px; padding: 0px; <actinic:block if="%3cactinic%3avariable%20name%3d%22IsBackgroundColor%22%20%2f%3e%20%3d%3d%20True"> background-color:<actinic:variable name="BGColor"/>; </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsBackgroundColor%22%20%2f%3e%20%3d%3d%20False"> background-image: url("<actinic:variable name="BackgroundImageFileName" />") center top repeat; </actinic:block> font-family: <actinic:variable name="ACTCSSFONTFAMILY" />; color: <actinic:variable name="TextColor" />; font-size: <actinic:variable name="StandardFontSize" />; }
I'm using css to define my site as 900 px wide so I have a #wrapper defining that.
So my Q is what is the best way to get a bg image into the site, centred
see attached image, i'm tryin gto get the drop shadow on the left/right ofthe body to work
Second
Comment