Originally posted by leehack
View Post
Announcement
Collapse
No announcement yet.
Fragment Layout (Image Only)
Collapse
X
-
Originally posted by Duncan Rounding View PostYou can, or you can change the fragment layout to be image only and enter the image into the image field.
Check it out now, www.roofingwarehouse.co.uk
Not bad for 2 days, first website? Gimme some props! Lol
Comment
-
Originally posted by RoofingWarehous View PostYea but i want multiple images in a row...
Check it out now, www.roofingwarehouse.co.uk
Not bad for 2 days, first website? Gimme some props! Lol
Actinic is not the best place to learn html/website building to be honest but your getting the jist of it.
one tip would be, I would add the images in those rows into seperate cells, this is the better tabular layout for better control, so you can space and format your cells and rows better.
example:
<table>
<tr>
<td>image 1</td>
<td>image 2</td>
<td>image 3</td>
<td>image 4</td>
</tr>
<tr>
<td>image 5</td>
<td>image 6</td>
<td>image 7</td>
<td>image 8</td>
</tr>
</table>
Good Luck!
Comment
-
Originally posted by DannyBoy View PostNice job well done! I feels better when you achieve things for yourself..
Actinic is not the best place to learn html/website building to be honest but your getting the jist of it.
one tip would be, I would add the images in those rows into seperate cells, this is the better tabular layout for better control, so you can space and format your cells and rows better.
example:
<table>
<tr>
<td>image 1</td>
<td>image 2</td>
<td>image 3</td>
<td>image 4</td>
</tr>
<tr>
<td>image 5</td>
<td>image 6</td>
<td>image 7</td>
<td>image 8</td>
</tr>
</table>
Good Luck!
Luckily i know basic HTML, when i was about 16 i bought a book called "HTML" and learnt to build websites in Dreamweaver/Photoshop.
Its been a while though since ive done a site, this is a whole new learning curve.
Once ive got the basics done on the site, ill opimize it and then i migh play around with the layout to make it a bit more "lively" and unique.
Thanks again Dan.
Comment
Comment