You can create sticky footer using css perfectly. Use following css code for creating the sticky footer. Many people gave example of google sticky footer.
create sticky footer using css or javascript
Use bellow CSS code.
html{
height:100%
}
body{
height:100%
}
#footer{
position: relative;
bottom: 0px;
height: 100px; //You must need to know your footer height
margin-bottom:-100px; //here I am thinking footer will be 100 px
}
You can change the footer height as per your need or footer height.
Sticky footer you will also achieve using javscript code.
Using only javascript and CSS you can easily achieve mouseover effect. In article we given sample code for change image of on MouseOver Event in your site.
change image of on MouseOver Event using JavaScript or CSS
If you want to change the image on rollover or mouseover event. This is very old technique. You can achieve this using CSS or javascript. I given the simple and powerful code javascript mouse event. I tested this code. It works on all the browsers.
When we are use the inline css in document. If in that case we need to use conditional css then there is way
// Following is hack for all IE, including 7. It must go first, or it overrides the following hack
<div style="width:15px;^width:13px;">
some dynamic content
</div>
// Following is hack for all IE6 + browsers
<div style="width:15px;_width:14px;">
some dynamic content
</div>
Many times we need to do word wrap using languages. I recommend use css for word wrapping. In this article, we explained about How to use word wrap with css
How to use word wrap with css
You can force long (unbroken) text to wrap in a new line by specifying break-word with the word-wrap property.
This is a problem with CSS layouts that use floated divs.
Use following code for fix the word wrap with all divs.
div { word-wrap: break-word }
instead of this we always use following css code:
overflow:hidden;
But this is not good practice. Use word-wrap css property.
Word-wrap is supported in IE 5.5+, Firefox 3.5+, and WebKit browsers such as Chrome and Safari.
Many developer who are experienced in development. But with another CMS development. we look for Best IDE for WordPress, Drupal Plugin and Theme development. But still that comes to another cms or project development. We are always search for good IDE which are free and open source that is the first requirement.
Best IDE for WordPress, Drupal Plugin and Theme development
Our basic need are as follows in any IDE, the IDE need to support following things:
CSS
XHTML/HTML
JavaScript
PHP
MySQL
I created a list of IDE which I used daily to do a development. Here I need to clarify IDE is language specific. I work in PHP, Ruby on Rails, Adobe Air, Flex, Javascript, CSS.
I recommend following IDEs which I really found useful for all the developer who are working in wordpress, joomla, drupal development.
Description: Eclipse is best IDE for all language development. Eclipse IdE is basically Java development but still that provides PHP, ROR and other language support. I like this IDE for java development but I did not recommend for PHP or Ruby on Rails.
Description: This IDE has also all language support. I specially like this IDE from Ruby on Rails development. I Used this IDE for Ruby on Rails development as well as some times for PHP development. Among the Ruby on Rails developer this IDE is so popular.
Description : This IDE is also support for all languages. This IDE is really good support for PHP. I really love this IDE for PHP development. Simple and fast and still nice features about PHP. This IDE is really popular among the PHP developers.
Description : This IDE is mainly made for Ruby on Rails development. This is also popular among Ruby developers. This IDE has features like eclipse. I like this IDE for Adobe Air and flex development. This IDE has also PHP support.
Description: This IDE is plain simple text editor. Shows you simple color highlight features. I specially recommend this IDE for PHP development and new PHP developer always start with this IDE so they will get filmier with PHP functions and methods because this IDE is does not provide any help. I love the use this IDE in daily use for any language development.
If you want to add any more IDEs. You can comments on this article.
Many web developer always think about why footer is not sticking to end of browser. In this tutorial we will show you to footer stickable to end of browser.
This is scenario:
If content is less than footer need to go bottom of browser and if content is more than footer will go down as per content.
Many people think this is CSS developer’s But I am not think that way. because this is totally different problem.
Some people suggest to use header, middle container and footer height in percentage. But that is wont be possible for all the time.
Here I will give you the solution. Use following JavaScript in document.
We can easily introduce fixed side buttons in wordpress or any website. In this article I given code snippet for Create fixed side buttons in wordpress.
Create fixed side buttons in wordpress
Fixing the position of any document element using CSS this is very old technique but still I am going to give you some good trick to show the twitter button or search buttons or add new button on bottom or sidebar.
Using following CSS code you can integrate the any button on sidebar.
CSS tutorial, Advanced rounded corner with only css. I got so many scripts which had solution with javascripts and some are given solutions with images.
In one of my project I got requirement about half rounded corner in header and footer.
Advanced rounded corner with only css
But I want customize every thing like color of rounded corner header background, footer background and border also.
I did so much R&D about same but did not found any solution.
So I tried to code myself in CSS and I got succeed in that.
In this article I am going to share the code with you.
CSS tutorial, how to create rounded corners using css. We always need the rounded corners for our various web projects. W3C has offered borders in CSS3.
W3C has offered some new options for borders in CSS3, of which one is border-radius. Both Mozila/Firefox and Safari 3 have implemented this function.
how to create rounded corners using css
There are many javascripts are available to create the rounded corner using scripts. But specially recommend use pur css to avoid unnecessary script loading. So many sites uses the background image also, We need to avoid that also.
Following css will give you the rounded corners using only css: