How to make something pop at the end of a forum
iWebBuddy.com - Website Design and Web Development Forum :: Web Design and Development :: Markup Languages and Styling
Page 1 of 1 • Share •
How to make something pop at the end of a forum
How do you make a graphic or something like show up when you scroll over a forum insted of a color}?

Amber- Active WebBuddy

Posts: 99
iCoins: 146
Re: How to make something pop at the end of a forum
Are you talking about something like this?
Copy and Paste Onto Your HTML Page :
It's a table-less code, and there is a hover color when you hover your mouse over the links placed in there.
I used the color pink because it seems that you like that color, but you can modify it yourself,
Copy and Paste Onto Your HTML Page :
- Code:
<html>
<body>
<head>
<style type="text/css">
#iTable {
border: 3px solid black;
border-color:#C12283;
width: 600px;
background-color: #FF00FF;
}
#iTable a {
font: bold 13px Verdana;
text-decoration: none;
color: black;
width: 100%;
padding-left: 6px;
padding: 13px;
display: block;
border-bottom: 1px solid black;
border-color:#C031C7;
}
html>body #iTable a {
width: auto;
}
#iTable a:hover {
background-color: #C12283;
color: white;
}
</style>
</head>
<div id="iTable">
<a href="http://www.iwebbuddy.com">CSS Table Style</a>
<a href="http://www.iwebbuddy.com">Hover Effect Table Style</a>
<a href="http://www.iwebbuddy.com">StyleSheet</a>
<a href="http://www.iwebbuddy.com">CSS</a>
</div>
</body>
</html>
It's a table-less code, and there is a hover color when you hover your mouse over the links placed in there.
I used the color pink because it seems that you like that color, but you can modify it yourself,



Marc- Administrator

Posts: 1119
iCoins: 2197
Forum Pet:

Permissions of this forum:
You cannot reply to topics in this forum












