Hi IWEBIX
Many thanks for your reply a couple of days ago – I only just noticed it (that’s because WP support forums don’t have any method by which you can get an email when a reply’s been added, unlike every other support forum in the world!). Yup, now I know what’s in it, I’ll update the theme.
That said, I’ve another problem now. I’ve created the raw css to make a photo ‘mosaic’ page, here’s a demo picture of it https://www.fastuploader.com/images/layout.gif . That’s a genuine screenprint of an online page, so the css actually works, but when I put it inside a Creativix page it breaks and all images line up vertically down the page. Any idea of what gives? Here’s the html I’ve inserted in the page ‘<img class=”thumbnail” src=”…/frontthumb.jpg” width=”410″ height=”280″>
<img class=”thumbnail” src=”…/frontthumb.jpg” width=”160″ height=”340″>
<img class=”thumbnail” src=”…/frontthumb.jpg” width=”230″ height=”130″>
<img class=”thumbnail” src=”…/frontthumb.jpg” width=”230″ height=”150″>
<div id=”div-1a”>
<img class=”thumbnail” src=”…/frontthumb.jpg” width=”290″ height=”230″></div>
<div id=”div-1b”>
<img class=”thumbnail” src=”…/frontthumb.jpg” width=”280″ height=”240″></div>
<div id=”div-1c”>
<img class=”thumbnail” src=”…/frontthumb.jpg” width=”230″ height=”150″></div>’
and the relevant bit of css I’ve added
‘{
float:left;
margin:5px;
}
#div-1 {
position:relative;
width:280px;}
#div-1a {
position:relative;
top:-60;
right:0;
width:200px;
}
#div-1b {
position:relative;
top:-235;
left:300;
width:200px;
}
#div-1c {
position:relative;
top:-530;
left:590;
width:200px;
}
#div-1d {
position:relative;
top:100;
left:420;
width:200px;
}’
Like I said, it works perfectly well as a page by itself, but not for some reason in your theme?