Hi!
I hope this message is in the correct thread.
I have an issue with products showing in 'List' view on my website: http://mumstuff.magentostaging.com/mum-to-be/gifts.html
The 'price/ add to cart' section seems to have moved down, and out of position. ( Pic showing the error http://imgur.com/bro6aMk )
This error appears on the Ultimo theme and a previous Monster-template theme i had on there. Which probably means this isn't an issue with the Ultimo theme which is current in use?
There may be an option within magento which is causing this issue on the Admin panel System > Configurations tab. The site is running Magento ver. 1.9.1.0
As a side note; i have applied the Ultimo theme on a previous magento site (Magento ver. 1.7.0.2). This is how the website without the error should look like: http://classicpartsltd.com/goggles.html?mode=list
Any advice will be really great right now, thank you! : )
Solved! Go to Solution.
RESOLVED~!
Turned out to be an easy fix like i expected.. i checked the short description of the product and a html tag wasn't closed off..
This is what caused the error:
<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul
</div>
Fixed:
<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul>
</div>
Disappointed i didn't receive any help on this sooner, but nevermind! Helps me learn i suppose. : )
RESOLVED~!
Turned out to be an easy fix like i expected.. i checked the short description of the product and a html tag wasn't closed off..
This is what caused the error:
<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul
</div>
Fixed:
<div>
<ul>
<li><strong>Colours-</strong> Blue or Pink, both perfect for brightening up your baby shower theme!</li>
<li><strong>Pack Size- </strong>Each pack contains 10 Ballons</li>
</ul>
</div>
Disappointed i didn't receive any help on this sooner, but nevermind! Helps me learn i suppose. : )