Hi All,
I'm new to the forum, looking for a reason as to why I am struggling to view my CSS background images in Actinic. Basically, I am redesigning an Actinic site for a friend...from the ground up.
I have done my outer layout in Dreamweaver using a relatively basic css layout. Background images give the site its appearance. Looks nice and dandy so far in Dreamweaver - but in Actinic and Preview...no CSS backgrounds. The CSS layout itself is there, so coding is on the right track
An example of my background elements look like this:
The Box Middle Div will be where the content navigation will be - just to make it easier for you to picture. Trying to keep this to a minimum so you haven't fallen asleep by the end of my post (if you havent already )
Any help really would be appreciated. I don't have the ability to upload the site until I have created the theme for him, so not sure if that would fix the issue when uploaded to the webspace!?
Thanks in advance
I'm new to the forum, looking for a reason as to why I am struggling to view my CSS background images in Actinic. Basically, I am redesigning an Actinic site for a friend...from the ground up.
I have done my outer layout in Dreamweaver using a relatively basic css layout. Background images give the site its appearance. Looks nice and dandy so far in Dreamweaver - but in Actinic and Preview...no CSS backgrounds. The CSS layout itself is there, so coding is on the right track
An example of my background elements look like this:
#boxtop{
width:220px;
height: 105px;
background-image: url('Box_Top.jpg');
}
#boxmiddle{
width:220px;
min-height: 220px;
background-image: url('Box_Middle.jpg');
background-repeat:repeat-y;
}
#boxbottom{
width:220px;
height: 43px;
background-image: url('Box_Bottom.jpg');
background-repeat:repeat-y;
}
width:220px;
height: 105px;
background-image: url('Box_Top.jpg');
}
#boxmiddle{
width:220px;
min-height: 220px;
background-image: url('Box_Middle.jpg');
background-repeat:repeat-y;
}
#boxbottom{
width:220px;
height: 43px;
background-image: url('Box_Bottom.jpg');
background-repeat:repeat-y;
}
- Tried a seperate CSS that was imported via @import url("theme.css");
- Included my CSS at the bottom and tops of "actinic-styles.css"
- CSS and images are in the root of the Site1 folder
- Tried .jpg .png .gif to try exclude that issue
- Tried url(" and url(' to try exlude that issue
- Pulled some hair out
Any help really would be appreciated. I don't have the ability to upload the site until I have created the theme for him, so not sure if that would fix the issue when uploaded to the webspace!?
Thanks in advance
Comment