Jump to content

Turn off all button decoration in a DIV or TABLE


jomagi

Recommended Posts

Hi there!

 

How can I turn off all the decoration of links in a DIV or TABLE, I have a decoration in the webpage used in the links but in this DIV or TABLE I don't want any decoration, no underline, no border, no mouseover, nothing but remaining the linkage!!!

 

Thanks!

Hi there!

 

How can I turn off all the decoration of links in a DIV or TABLE, I have a decoration in the webpage used in the links but in this DIV or TABLE I don't want any decoration, no underline, no border, no mouseover, nothing but remaining the linkage!!!

 

Thanks!

 

There is numberous options you have. You can specify "default" values for the div or table. OR you can reorganize your css/html in previous sections so that inheritance will not be a problem.

I'm noob to this thing, can you explain a little more please???

 

<style type="text/css">
<!--
a:link {text-decoration: none;
	color: #FFFFFF}
a:visited {text-decoration: none;
	color: #FFFFFF}
a:active {text-decoration: none;
	color: #FFFFFF}
a:hover {text-decoration: none;
	text-align: right;
	color: #666666;
	background: #f1f1f1;
	display: block;
	width: 85px;}		

#menu {
bottom: 3%;
right: 20px;
width: 70px;
position: fixed;
}

body {
background-color: #99CB34;
background-image: url(images/Background.jpg);
background-repeat: no-repeat;
background-position: top right;
}
img
{  border-style: none;
}
-->
</style>

 

I have this code in the style section, define how my menu should act but now I need to put a TABLE or DIV with a table where I show an image with link and a string with link too, but I don't want any type off visual interact to be more clean and for make difference from site menu.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.