Help needed with pinterest layout in magento

Hi all

I’m a web designer (and do some front end dev sometimes) and have been having issues with a masonry/pinterest layout inside magento. I did not do the magento part but have created the css and HTML for the masonry layout. I’ve been having issues with overlaps (particularly whilst refreshing the page) and wondered if anyone can shed some light on this for me? I am at my wit’s end and would really appreciate some help :slight_smile:

The page is here:
http://mtl.itaservices.net/kitchenware/toasters

Thanks in advance. I can help with any design queries if needed

Hi muymono. Welcome to the forums. :slight_smile:

The page looks OK to me, to be honest. But I’m also wondering why you are using Masonry here. Masonry is really for neatly stacking variable height elements, but in your case, the boxes are all the same height, meaning that using floats or inline-block would be a much better option here.

I’ve noticed on the sidebar you seem to have a long string of characters which underlap onto the right main content area. You have a max width of 1003px set on .container which restricts the content…yet you also have width: 1200 some px also set. Either way, it’s just not big enough. I’m unsure what those long character strings are even for though? Serves no purpose from my perspective and would be better off being removed.

As for those boxes, each one of them is absolutely positioned and it’s much easier and safer to do floats while doing so. You could have this section

<div class="masonry js-masonry" data-masonry-options="{ &quot;gutter&quot;: 5 }" style="position: relative; /* height: 2604px; */overflow: hidden;">    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 0px; top: 0px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-apple-green.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATAG-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Apple-Green.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Apple Green">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-apple-green.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Apple Green</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-apple-green.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 228px; top: 0px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-jet-black.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATB-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Jet-Black.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Jet Black">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-jet-black.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Jet Black</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-jet-black.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 456px; top: 0px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-cranberry.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATC-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Cranberry.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Cranberry">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-cranberry.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Cranberry</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-cranberry.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 0px; top: 434px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-colbalt-blue.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATCB-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Colbalt-Blue.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Colbalt Blue">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-colbalt-blue.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Colbalt Blue</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-colbalt-blue.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 228px; top: 434px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-cream.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATCR-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Cream.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Cream">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-cream.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Cream</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-cream.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 456px; top: 434px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-gold.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATGD-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Gold.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Gold">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-gold.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Gold</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-gold.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 0px; top: 868px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-plum.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATP-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Plum.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Plum">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-plum.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Plum</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-plum.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 228px; top: 868px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-quartz-grey.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATQG-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Quartz-Grey.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Quartz Grey">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-quartz-grey.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Quartz Grey</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-quartz-grey.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 456px; top: 868px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-traffic-red.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATTR-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Traffic-Red.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Traffic Red">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-traffic-red.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Traffic Red</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-traffic-red.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 0px; top: 1302px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-sky-blue.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATSB-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Sky-Blue.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Sky Blue">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-sky-blue.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Sky Blue</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-sky-blue.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 228px; top: 1302px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-angerine.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATT-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Tangerine.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Tangerine">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-angerine.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Tangerine</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-angerine.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 456px; top: 1302px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-traffic-yellow.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATTY-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Traffic-Yellow.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Traffic Yellow">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-traffic-yellow.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Traffic Yellow</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-traffic-yellow.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 0px; top: 1736px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-white.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATW-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-White.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in White">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-white.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in White</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-white.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 228px; top: 1736px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-black.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/2/A/2ATB-171E-Rowlett-Esprit-2-Slice-Bread-Toaster-in-Black.jpg.jpg" alt="Rowlett Esprit 2 Slice Bread Toaster in Black">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-black.html"><div class="category-item">Rowlett Esprit 2 Slice Bread Toaster in Black</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£174.00</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-black.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 456px; top: 1736px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-claret.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/2/A/2ATCL-171E-Rowlett-Esprit-2-Slice-Bread-Toaster-in-Claret.jpg.jpg" alt="Rowlett Esprit 2 Slice Bread Toaster in Claret">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-claret.html"><div class="category-item">Rowlett Esprit 2 Slice Bread Toaster in Claret</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£174.00</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-claret.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 228px; top: 2148px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-gold.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/2/A/2ATGD-171E-Rowlett-Esprit-2-Slice-Bread-Toaster-in-Gold.jpg.jpg" alt="Rowlett Esprit 2 Slice Bread Toaster in Gold">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-gold.html"><div class="category-item">Rowlett Esprit 2 Slice Bread Toaster in Gold</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£174.00</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-gold.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 0px; top: 2170px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-white.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/2/A/2ATS-171E-Rowlett-Esprit-2-Slice-Bread-Toaster-in-_White.jpg.jpg" alt="Rowlett Esprit 2 Slice Bread Toaster in White">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-white.html"><div class="category-item">Rowlett Esprit 2 Slice Bread Toaster in White</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£174.00</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-in-white.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    		
		 <div class="category-grid  col-md-4" style="width: 100%; position: absolute; left: 456px; top: 2170px;">
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-with-polished-ends.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/2/A/2ATW-171E-Rowlett-Esprit-2-Slice-Bread-Toaster-with-Polished-Ends.jpg.jpg" alt="Rowlett Esprit 2 Slice Bread Toaster with Polished Ends">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-with-polished-ends.html"><div class="category-item">Rowlett Esprit 2 Slice Bread Toaster with Polished Ends</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£174.00</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-esprit-2-slice-bread-toaster-with-polished-ends.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>
    	 </div>

Each inner div could be floated…and the parent could use a clearing mechanism such as clearfix.

hi ralph

Thanks so much for taking the time to look at the page. The products on that page are all the same height more or less but other products will have different height- that’s the reason I had to do masonry at the client’s request. If i change the height of one on the fly it just goes crazy and starts to overlap, and even at present with all prods same height, when i refresh the page it causes overlaps, so i think there is something wrong with the css.

This is driving me insane :slight_smile:
Thanks
Muymono

hi Ryan

Thanks so much for your time. I did not do the sidebar part so it would be very useful to see what the strings are so I can tell the developers to remove it. I have no access to the code, just the css but I can tell them what needs changed in the HTML code. Apologies for my ignorance but I would really appreciate if you could tell me which part of the HTML I need to ask them to change.

Thanks again I am so grateful for all your help and insight.

The HTML needs no changing. Well, on each

[COLOR=#888888][FONT=Consolas].col-xs-1, .col-sm-1,.col-md-1, .col-lg-1, .col-xs-2, .col-sm-2,.col-md-2, .col-lg-2, .col-xs-3, .col-sm-3,.col-md-3, .col-lg-3, .col-xs-4, .col-sm-4,[COLOR=#222222].col-md-4[/COLOR], .col-lg-4, .col-xs-5, .col-sm-5,.col-md-5, .col-lg-5, .col-xs-6, .col-sm-6,.col-md-6, .col-lg-6, .col-xs-7, .col-sm-7,.col-md-7, .col-lg-7, .col-xs-8, .col-sm-8,.col-md-8, .col-lg-8, .col-xs-9, .col-sm-9,.col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11,.col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12[/FONT][/COLOR][FONT=Consolas] {[/FONT]
[LIST]
[*]/*[COLOR=#C80000]position[/COLOR]: relative;*/
[*][COLOR=#C80000]min-height[/COLOR]: 1px;
[*][COLOR=#C80000]padding-left[/COLOR]: 15px;
[*][COLOR=#C80000]padding-right[/COLOR]: 15px;
[/LIST]
[FONT=Consolas]}

The position:relative needs to be removed, or if you need that elsewhere on the site, give each of these a new class

[FONT=arial]<div class="category-grid  col-md-4" style="width: 100%;  position: absolute; left: 228px; top: 0px;">[/FONT][/FONT]
			<div>
				<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-jet-black.html"> 
					<img src="http://mtl.itaservices.net/media/catalog/product/cache/1/small_image/200x160/9df78eab33525d08d6e5fb8d27136e95/4/A/4ATB-131-Rowlett-Retro-Regent-4-Slice-Bread-Toaster-in-Jet-Black.jpg.jpg" alt="Rowlett Retro Regent 4 Slice Bread Toaster in Jet Black">
				</a>
				<div class="product-info">
					<a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-jet-black.html"><div class="category-item">Rowlett Retro Regent 4 Slice Bread Toaster in Jet Black</div></a>
					<div class="supplier-name">Rowlett Rutland Ltd</div>
					<div class="supplier-by"><span class="price">£190.20</span></div>
					
					<div class="item-description"></div>
					<div class="stamps"><img src="http://mtl.itaservices.net/media/stamps/stamp-3.png"></div>
					<div class="add-basket" style="padding-top:18px;"><a href="http://mtl.itaservices.net/kitchenware/toasters/rowlett-retro-regent-4-slice-bread-toaster-in-jet-black.html"><input type="button" name="button" class="btn btn-warning" value="More Info"></a></div>
					<div style="clear:both;"></div>
				</div>
			</div>
		</div>

Each of those elements need those inline rules removed. At least the position:absolute. This is pretty sloppy HTML to be honest. After you float each of those boxes, .masonry needs to have the height removed and overflow:hidden set.