• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

HTML code..

dydocan

dydocan
Joined
Jul 2, 2010
Messages
95
Reaction score
0
Is there any html code so I can make a button glow while holding the mouse over it and when I remove the mouse from the button it stops glowing?
 
yes but I have an image as link who I want to glow when the mouse is over it and stop glowing when mouse is removed
 
HTML:
<html>
	<head>
		<style type="text/css">
			input.glow:hover { box-shadow: 0 0 4px #FF0000; }
		</style>
	</head>
	
	<body>
		<input type="button" class="glow" value="by Aeven" />
	</body>
</html>

You mean about this?


#edit
HTML:
<html>
	<head>
		<style type="text/css">
			img.glow:hover { box-shadow: 0 0 4px #FF0000; }
		</style>
	</head>
	
	<body>
		<a href="#"><img src="http://static3.otland.net/customavatars/avatar91287_1.gif" alt="" class="glow" /></a>
	</body>
</html>
 
nah thanks for your attention guys it is not gonna work cuz the image is a box but transparent but the button is round in the middle so when I set it to glew the whole box is glowing and it looks ugly as hell
 
Back
Top