[Pro] Web Yep img tag Extended

Anyone know the Web Yep image tag to create a border on hover?

Billy


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Show us your page and we can tell you.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

http://smartytest.com/Greek/ourwork.php


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

The following will give you a border on hover on all images within the Div item1

#item1 img:hover {
border: 1px solid red;
}

But may give you unexpected results. More specifics required.

Careful naming of Divs is a valuable exercise.

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

That works but the image shifts on hover. Is it possible to put this inside the Web Yep image tag?

Billy


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

That’s probably because the image has no border in its normal or ‘off’ state.

Todd

That works but the image shifts on hover.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

That works but the image shifts on hover.

Yes to avoid the shift give the normal state a border too

#item1 img {
border: 1px solid white;
}
#item1 img:hover {
border: 1px solid red;
}

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Yes Thank you.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options