Simple Lightbox Effect using css and html 
The simple lightbox effect can be used to draw attention to a piece of information without changing pages, I have used this effect very nicely in marketing campaigns and personalised web campaigns.

to start with this you will need to add the css code:



.overlay{
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
-moz-opacity: 0.9;
opacity:.90;
filter: alpha(opacity=90);
}

.lBox_content
{
display: none;
position: absolute;
background-color:#fff;
top: 25%;
left: 25%;
width: 50%;
height: 50%;
border: 1px solid red;
z-index:1008;
overflow: auto;
}

Read More...

[ add comment ] ( 44 views )   |  [ 0 trackbacks ]   |  permalink  |   ( 2.9 / 329 )
Sending multipart emails in VB.net using remote html and txt files as content. 
Sending emails using vb.Net is fairly straight forward I know, but it gets a little more complicated if you want to:

a.) send variable data
b.) remotely host content
c.) send text as well as html
d.) authenticate with an smtp server

Read More...

[ 2 comments ] ( 117 views )   |  [ 0 trackbacks ]   |  permalink  |   ( 2.9 / 242 )
jQuery Animated Backgrounds Effects 
I have found an effective use of background animation combined with other effects to create quite nice looking web design with interesting interaction effects.

see demo hannah's site

on a webpage if you create a div with a width of 200px and a height of 200px and you want 3 pages you create a background image of 600px wide and 200px high.



then add the css code:

Read More...

[ 1 comment ] ( 115 views )   |  [ 0 trackbacks ]   |  permalink  |   ( 3 / 205 )

| 1 |