I am building a new website, and I would like to know if it is possible to build a site with a design similar to the one adium has? if possible how can i do one like that? if you wanna check it out the url is http://www.adiumx.com/. Thanks
Of course you can. You can build a site to look like whatever you want. If you could be more specific about which feature(s) you particularly like and want to replicate, I could show you the code that does it.
Ok thanks a lot. I would like to know how i can display any feature any where on the page. I would also like to know how i can put links into a button format like the one on the adium website; and how i can put logos or pictures that can link to another page.
<a href="http://somelink.com"><img src="/images/blah.jpg"></a>
<html>
<head>
<style type="text/css">
body { margin: 0px; pdding: 0px; }
#header {
display: block;
background: #006699; /* some shade of blue */
height: 70px;
position: relative;
}
#logo {
color: white;
font-size: 30px;
font-weight: bold;
float: left;
margin: 20px;
}
#navigation {
position: absolute;
bottom: 4px;
right: 5px;
}
#navigation a {
padding: 4px 10px;
background: #bbb;
text-decoration: none;
}
#navigation a.selected {
background: white;
}
</style>
</head>
</body>
<div id="header">
<div id="logo">Your logo here</div>
<div id="navigation">
<a href="#" class="selected">Home</a>
<a href="#">About</a>
<a href="#">Contact us</a>
</div>
</div>
</body>
</html>
OK, it sounds like you're really starting from basics. You need to go read a primer on HTML and in particular CSS. There's lots of good tutorials out there. Once you read one, start playing around with a file of your own and try to position things and modify the look and behavior of links. When you run into a specific problem, by all means ask here. We want to help, but your questions are incredibly broad and would not be served well by someone here just rewriting what has already been written thousands of times around the web -- what is CSS and how to use it. For us to help you, you really need to come in with at least a basic working knowledge and ideally have made an attempt.
I can answer your last question quite easily though: to make an image that links to another page, just put the regular link <a> tag around an image:
Code:<a href="http://somelink.com"><img src="/images/blah.jpg"></a>
#navigation a {
padding: 4px 10px;
text-decoration: none;
background: #bbb url("path/to/image/relative/to/this/document.gif") top left repeat-x;
}