Tookie
Member
- Feb 24, 2012
- 36
- 1
So this is how the site looks like for now: -- But I want the change that white background so it can be see through but you can still see as if it's a ghost. I believe it's called transparent, I Googled it and the defeneitondefinition sounded like what I wanted.
White Container CSS:
Index:
White Container CSS:
Code:
}
.container {
width: 560px;
margin: auto;
border: thin solid #CCC;
background-color: #FFF;
padding: 8px;
margin-bottom: 15px;
-moz-border-radius: 4px;
border-radius: 4px;
cursor: pointer;
}
Index:
Code:
}
<html>
<head>
<title>MyDOMAIN! ~ BLAH BLAH BLAH, HELP ME DEVBEST!</title>
<link rel="stylesheet" href="splash.css" type="text/css" />
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<center><img src="images/logo.png"></center>
<div class='container'>
<a href="#"><img src="images/hotel.png" border="1px"></a>
<a href="#"><img src="images/forums.png" border="1px"></a>
<a href="#"><img src="images/hotel.png" border="1px"></a>
</div>
</body>
</html>
}