Click to See Complete Forum and Search --> : help with picture selection bar
Brian4120
08-29-2003, 09:49 PM
hello (new to the forums and learning HTML)
I have a page that i post pictures from friends. Scince i started this, my page has gotten overcrouded and i need a selection bar.
i already have a nav bar for my main site that is about 175 px
i am wanting to have 75x75 thumbnails on a horiziontal scrolling frame.
can anyone help me?
thanks
PS. i included an example
DaveSW
08-30-2003, 07:36 AM
Something like this?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE></TITLE> <STYLE TYPE="text/css"><!--BODY{font-size:1.5em;}
A:link{ text-decoration:none; color:#ad4234;}
A:visited{ text-decoration:none; color:#ad4234;}
A:active{ text-decoration:none; color:#ad4234;}
A:hover{ text-decoration: underline; color:#ad4234;}
.pici{margin:0px; padding:0px;}--></STYLE>
</HEAD>
<BODY>
<DIV STYLE="text-align:center;">
<DIV>
<A HREF="house2.JPG" TARGET="main">1</A>
<A HREF="house2a.JPG" TARGET="main">2</A>
<A HREF="house2b.JPG" TARGET="main">3</A>
<A HREF="house3.JPG" TARGET="main">4</A>
<A HREF="house3a.JPG" TARGET="main">5</A>
<A HREF="house4.JPG" TARGET="main">6</A>
<A HREF="house4a.JPG" TARGET="main">7</A>
<A HREF="house4b.JPG" TARGET="main">8</A>
<A HREF="house4c.JPG" TARGET="main">9</A>
<A HREF="house4d.JPG" TARGET="main">10</A>
</DIV><IFRAME class="pici" WIDTH="380" HEIGHT="380" ALIGN="MIDDLE"
SCROLLING="NO" NAME="main" SRC="house2.JPG"></IFRAME> </DIV></BODY>
</HTML>
See it in action here:
http://www.emdevelopments.co.uk/demo/iframe/
DaveSW
08-30-2003, 09:29 AM
You could take the numbers out and replace them with thumbnails if you so wished.
Brian4120
08-30-2003, 02:48 PM
thanks, ill give it a try