user1558744
user1558744

Reputation: 1

Product description showing in html

I'm having trouble with the desription page for my product. When I click the category link in the Front end to view a product everything works fine. But when I get to the product page and click on the picture or the link for the product it shows the page in HTML. I am new to the magento community, can someone please help me.

Upvotes: 0

Views: 978

Answers (2)

MeltingDog
MeltingDog

Reputation: 15468

When I checked out your site I noticed the homepage linked off to a completely different style sheet then the product page.

The home page links off to style.css which is in the root directory of your site and seems to have the styling you want (e.g. the background image).

The product page has links off to other multiple style sheets but none are the same as your homepage.

Try pasting

<link rel="stylesheet" type="text/css" href="style.css" /> 

in the header file of the product pages (sorry I've not used Magento before so I dont know where these file would be...)

Upvotes: 0

Tim Hofman
Tim Hofman

Reputation: 1068

On your home page the following file is loaded: http://www.lightupshoelaces.com/store/skin/frontend/default/default/css/styles.css

Though on your product detailpage the URL differs, which throws a 404. http://www.lightupshoelaces.com/store/skin/frontend/base/default/css/styles.css

This is all I can say at the moment. Did you make any changes to the layout XML files regarding loading of skin files for the catalog product detail page?

Upvotes: 1

Related Questions