i need your help in this gallery
Page 1 of 1
i need your help in this gallery
here is a link of a website that what i found before finding this great website.u see when u click on an image it will be opened on new window and the image wil be bigger my question is how to make the image bigger , do i have to use new program or style or what , i dont understand how to make it bigger , i know hoe to make this gallery but i dont know how to make it bigger when opining on new window .
here is the link of what i am talking about
http://www.w3schools.com/css/tryit.asp? ... ge_gallery
Re: i need your help in this gallery
- Code: Select all
<a target="_blank" href="klematis2_big.htm"><img src="klematis2_small.jpg" alt="Klematis" width="110" height="90" /></a>
Its one of the image link from your example. Take a close look. What you see in the gallery is the image at img source (klematis2_small.jpg). Now take a look at href attribute of anchor tag. its klematis2_big.htm, so you know that means when you click the image, you will be taken to that page (klematis2_big.htm), which is a new page. That page is just showing a larger version of the image. You can do that using just img tag. Just create that page and put a larger version of image on that page.
Page 1 of 1