Click to See Complete Forum and Search --> : [RESOLVED] styles not showing on redirected web page


davedechant13
12-02-2009, 03:16 PM
I have a web page that shows up styles intact when linked directly, but when attempting to use urls that redirect to the site the page displays without styles.

Any suggestions?

The direct url is www.lancercatering.com/locations/ (http://www.lancercatering.com/locations/), and the redirected url is www.waconiaeventcenter.com (http://www.waconiaeventcenter.com).

Thanks for any help!

Specht08
12-02-2009, 03:59 PM
If you try to open the stylesheet on the redirected url you get a 404 response. So the path to your stylesheet is wrong.

Specht08
12-02-2009, 04:04 PM
there is also something wrong with the script tags at line 13 and 24 and one img tag at line 179. They all link to some files located on the clients computer (path like this: file:///C|/Marketing/htdocs/images/common/spacer.gif)

davedechant13
12-02-2009, 04:04 PM
Wouldn't the path stay the same whether using the direct url or the re-directed one since I'm using relative paths for my style sheet.

Thanks for any clarification...

Specht08
12-02-2009, 04:07 PM
Your first url has a subdirectory so ../ for the parent directory works but your second url does not have one so you cant get one directory up. ../ is in this case the url

davedechant13
12-02-2009, 04:36 PM
Got everything worked out, thanks for the help Specht08!