I will post code again, maybe someone knows a fix..please
trying to add background image property to a row, code as follows, live on a server..
http://stream8media.com/test/coffeecup
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<link rel="stylesheet" href="css/coffeegrinder.min.css">
<link rel="stylesheet" href="css/wireframe-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="row image-here">
<div class="coffee-span-12">background image supposed to be here on this row</div>
</div>
<div class="row">
<div class="coffee-span-6">
<p class="paragraph">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.</p>
</div>
<div class="coffee-span-4"><img class="image-4-3" src="img/1.jpg" alt="Image">
</div>
<div class="coffee-span-2"></div>
</div>
</body>
</html>
CSS Code..in custom.css file
/* Default CSS */
/* Generated by the CoffeeCup HTML Editor -
www.coffeecup.com */
body .row.image-here {
background-image: url("img/1.jpg");
}