Please Help On Image resizer

litu2009

New Member
Please Help on on image resizer i am search here and also found that when i install it was not working please help on this i am using vb 3.8.1.

Please Help or attach the file here.

Thank You In Advanced
& sorry for my bad english
 
Nothing to upload follow this.

Step 1:
Go to--->ACP--->Custom BB Codes--->Add new BBcode.
Title: BBcode Image Resizer with CSS
BB Code Tag Name: imgr
Replacement:
Code:
<a class="thumbnail" href="#thumb"><img src="{param}" width="320px" height="240px" border="0" /><span><img src="{param}" /><br />Image</span></a>

Example: [IMGR]You Image link[/IMGR]
Description: Image Resizer with CSS. Enlarged image onMouseover.
Use {option}: No

Click SAVE BBcode.

Step 2:
Go to--->ACP--->Styles & Templates--->Style Manager--->You Styles--->Main CSS--->Additional CSS Definitions
add this Code on the bottom of the window last
Code:
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}
 
It was not working i am asking for this if a person put the image link and click the post after post the size of the image will be decrease

iframe-1.png
 
Back
Top