Wednesday, July 9, 2008

Footer thats really at the foot... A CSS solution

To bring down the footer! really down.

How can we keep the footer at the bottom of the browser no matter what resolution the user has? If you are stuck with this kind of question, here goes a cool remedy. Need to have a little knowledge of CSS too.

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Footer at the bottom, off course of the browser!</title>
<style>

*
{
margin: 0;
}

html, body
{
height: 100%;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}

.content
{
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -35px;
}

.footer
{
height: 35px;
background-color: #7c7c7c;
color: #fff;
text-align: center;
}

.gapDiv
{
height: 35px;
}

</style>
</head>

<body>

<div class="content">


This is my body!


<div class="gapDiv"></div>

</div>

<div class="footer">

here is the Footer

</div>

</body>
</html>


Enjoy! works fine on any browser.

Friday, February 15, 2008

So I will start some tutorials.

This has been in my mind for a long time now. Most of the knowledge I acquired was all from internet and from some good hearted people. These people are my inspiration to start telling and sharing what I know. I remember, when I was doing my 7th, there was a good 'thought of the day' written on the school-news-board. It said,"Knowledge shared is sought. I strongly believe in that, ever since.

So what will I be talking about? well anything I know about graphic stuff. May it be Photoshop, Flash, HTML, Java Script, Ajax, Web 2.0 concept, Dreamweaver and what not. All of them classified into Entry level, Intermediate and Advance level.

So c u folks, wish me luck.

Friday, September 7, 2007

Web 2.0

This buzz word has now transformed itself into a 'non-jargon' word. Every netizen is aware of it.

It is a happening thing, yet I wonder, what if this really exist even before it is. When it comes to the internet experience, WEB 2.0 rocks. Now every web page wants web 2.0 feel. Usability, Interactivity, RSS feed has become a layman term, Google maps is the most used navigation system, 'read in papers this morning' has gone long ago, 'I checked today's podcast' is happening, Socializing through internet, all these being the aspect of Web 2.0 (especially the last one), it is all about the experience we have .

Lots and lots of good stuffs are coming through in my further posts. Some good WEB 2.0 sites:

http://www.zoho.com

facebook.com

digg.com


On my forthcoming posts I will be writing tutorials on web 2.0 based designing and development.