Just loaded after so the next line or 30 lines after, it doesn't matter.
Announcement
Collapse
No announcement yet.
Dreamweaver custom CSS problems
Collapse
X
-
I have a dreamweaver outerlayer as discussed earlier. It is also 770px wide and centred, and with its own css file. I had no problem with this at all in actinic. In fact it was the first time I have been able to seamlessly integrate actinic into the rest of a website.
Either your coding is wrong, or something is not right in your actinic setup. Have you checked widths etc in site options? I have noticed that set widths in pixels can upset the wrapper div, if they combine to more than the 770px that you have set. But it is quite hard to upset the centreing bit of it.
I would recommend "firebug", which is great for seeing exactly what is going on. You do need to stick it on a server though, as it is the only way to really see what is happening.
Comment
-
css can overwrite itself and will use the "newest" code to display whatever it is its been designed too... this is how myspace pages work..
my guess is the actinic.css is being called after your custom one and it is using that as the primary..
change your include file header link to first the actinic then your custom and try it..
Comment
-
Doctype
I have worked out what the problem is....the DOCTYPE of the outerlayer in Dreamweaver needs to be set as:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
The page that was causing the problem was set as:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Once I changed this I had no further problems and I am getting on with the site well now!!
Comment
Comment