Html/web page help

Walshy

Well-Known Member
Joined
24 Jun 2004
Messages
612
Location
21m SSW
Anyone know how I can get the logos at the bottom of the page on the right to appear in line with the text/image and facebook Like button ?

<a class="postlink" href="http://hccp.org.uk/index.htm" onclick="window.open(this.href);return false;">http://hccp.org.uk/index.htm</a>

Code is currently:

<iframe src="https://www.facebook.com/plugins/like.php?href=https://www.facebook.com/hccps"
scrolling="no" frameborder="0"
style="border:none; width:450px; height:80px"></iframe>


<!--msnavigation--></td><td valign="top" width="24"></td><td valign="top" width="1%">


<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</p>

</td></tr><!--msnavigation--></table></body>
<br><br><br>
<img border="0" src="../hccpImages/heallthyschools.jpg" align="right" width="125" height="75" hspace="23" >
<img border="0" src="../hccpImages/EYFS_logo.jpg" align="right" width="75" height="75" hspace="23">
<img border="0" src="../hccpImages/pla.png" align="right" width="115" height="75" hspace="23">
<img border="0" src="../hccpImages/Ofsted_logo2.gif" align="right" width="75" height="75" hspace="23"></font></p>

</html>

Any help appreciated.
Cheers.
 
I would've recommended doing it using CSS for the layout rather than tables, but as you've done the rest in the latter format I'll stick with that.

Replace the code you've put above with this and it should work:

Code:
<iframe src="https://www.facebook.com/plugins/like.php?href=https://www.facebook.com/hccps"
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px"></iframe>
        <br /><br />
        <img border="0" src="../hccpImages/heallthyschools.jpg" width="125" height="75">
<img border="0" src="../hccpImages/EYFS_logo.jpg" width="75" height="75">
<img border="0" src="../hccpImages/pla.png" width="115" height="75">
<img border="0" src="../hccpImages/Ofsted_logo2.gif" width="75" height="75">


       
<!--msnavigation--></td><td valign="top" width="24"></td><td valign="top" width="1%">




</td></tr><!--msnavigation--></table></body>


</html>

Looks like you've used an HTML editor which has added lots of unnecessary, messy code but I guess that doesn't really matter from your perspective? If you have any further questions feel free to PM me mate.
 

Don't have an account? Register now and see fewer ads!

SIGN UP
Back
Top