Re: Live View Differences -
03-27-2009
, 02:16 PM
Your URLs are wrong in your CSS I think.
background-image:
url(file:///C|/Documents%20and%20Settings/Dominguezan/Desktop/New%20Logo%203.jpg
);
Take that one as an example. It's linking to a file on your drive but
Dreamweaver (and a browser) will expect it to have a path that relates to the
root of your web site.
Also, it's never a good idea to include spaces in any file names on the web
including your images. Your file is called New Logo 203.jpg - you should
change that to NewLogo203.jpg or as you see in your code, it gets translated as
something far more complicated.
Martin |