The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

wallpaper'

3 posters

Go down

Solved wallpaper'

Post by udarsha45 June 25th 2010, 3:53 pm

can u add wallpaper's in a html page so member can see the images ?


Last edited by udarsha45 on June 26th 2010, 6:51 am; edited 1 time in total
udarsha45
udarsha45
Forumember

Male Posts : 626
Reputation : 9
Language : English
Location : Sri Lanka

http://bleach.5forum.net

Back to top Go down

Solved Re: wallpaper'

Post by Guest June 25th 2010, 3:55 pm

you mean like gallery?
avatar
Guest
Guest


Back to top Go down

Solved Re: wallpaper'

Post by WHITESABBATH June 25th 2010, 4:27 pm

If you know how to create a html page , yes it can be done. Most sites like photobucket will give you the html codes to the image you want to display. If you do not know how to create html page, just let it known and we'll go from there.
WHITESABBATH
WHITESABBATH
Active Poster

Male Posts : 1198
Reputation : 119
Language : English, F-Bombs
Location : Chicago

Back to top Go down

Solved Re: wallpaper'

Post by Guest June 25th 2010, 4:35 pm

If you want it like this (http://www.aweza.net/Gallery-Test-h7.htm)
So tell and i give you the code.

Pictures used ( No avatar by CraZyWolf)
avatar
Guest
Guest


Back to top Go down

Solved Re: wallpaper'

Post by udarsha45 June 25th 2010, 5:55 pm

Gangstar15 wrote:you mean like gallery?

nope

WHITESABBATH wrote:If you know how to create a html page , yes it can be done. Most sites like photobucket will give you the html codes to the image you want to display. If you do not know how to create html page, just let it known and we'll go from there.

i know how 2 create a html page mate

Gangstar15 wrote:If you want it like this (http://www.aweza.net/Gallery-Test-h7.htm)
So tell and i give you the code.

Pictures used ( No avatar by CraZyWolf)

well yes so how ?
udarsha45
udarsha45
Forumember

Male Posts : 626
Reputation : 9
Language : English
Location : Sri Lanka

http://bleach.5forum.net

Back to top Go down

Solved Re: wallpaper'

Post by Guest June 25th 2010, 6:31 pm


CSS
Code:
<style type="text/css">

.gallerycontainer{
position: relative;

}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{
position: absolute;
background-color: lightblue;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{
visibility: visible;
top: 50;
left: 700px;
z-index: 50;
}

</style>

HTML
Code:

<div class="gallerycontainer">

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="66px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="66px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<br>

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="75px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="70px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<br>

</div>
avatar
Guest
Guest


Back to top Go down

Solved Re: wallpaper'

Post by udarsha45 June 25th 2010, 6:40 pm

Gangstar15 wrote:
CSS
Code:
<style type="text/css">

.gallerycontainer{
position: relative;

}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{
position: absolute;
background-color: lightblue;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{
visibility: visible;
top: 50;
left: 700px;
z-index: 50;
}

</style>

HTML
Code:

<div class="gallerycontainer">

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="66px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="66px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<br>

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="75px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<a class="thumbnail" href="#thumb"><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png" border="0" height="70px" width="100px"><span><img src="http://i64.servimg.com/u/f64/15/04/77/18/blue13.png"><br>No Avatar</span></a>

<br>

</div>

thank u but how can i add my images 2 it ?
udarsha45
udarsha45
Forumember

Male Posts : 626
Reputation : 9
Language : English
Location : Sri Lanka

http://bleach.5forum.net

Back to top Go down

Solved Re: wallpaper'

Post by Guest June 25th 2010, 6:52 pm

Change the image in these codes.

Code:
<a class="thumbnail" href="#thumb"><img src="IMAGE URL HERE" border="0" height="66px" width="100px"><span><img src="IMAGE URL AGAIN HERE"><br>Text that shown under the pic.</span></a>

do add more pictures just copy and paste the code above.
avatar
Guest
Guest


Back to top Go down

Solved Re: wallpaper'

Post by udarsha45 June 26th 2010, 6:50 am

thanks
udarsha45
udarsha45
Forumember

Male Posts : 626
Reputation : 9
Language : English
Location : Sri Lanka

http://bleach.5forum.net

Back to top Go down

Solved Re: wallpaper'

Post by Sanket June 26th 2010, 10:33 am

Since this thread is marked solved, I will lock this thread.
wallpaper' 2j4t5a8

Sanket Smile

Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum