Posted by: Amit Nazare on: April 28, 2009
Here is an example how we can change the image on mouse over. <a href=”#” onmouseover=”document.btn1.src=’images/img1.jpg’” onmouseout=”document.btn1.src=’images/img2.jpg’”><img src=”images/img2.jpg” alt=”” border=”0″ name=”btn1″/></a> Here in this example I have used onmouseover one image and onmouseout another image. You can see the name parameter for the img tag. Using this tag I am changing the image that is [...]
Posted by: Amit Nazare on: April 27, 2009
Most of us might have seen to make any div position fixed we normally use css attribute as position:fixed, but this doesn’t work with IE as ususal the crap browser. So to make it compatible with IE here is a solution where we can make the div position fixed. Just copy the below code and [...]
Posted by: Amit Nazare on: April 24, 2009
Most of us might have seen when working with divs valign doesn;t seem to work. So to make it align exactly vertically align center we normally make use of padding-top and padding-bottom property. Rather then using this there is another solution for this. Try using the below code: <div id=”outerdiv” class=”border”> <div id=”middlediv”> <div id=”innerdiv” [...]
Posted by: Amit Nazare on: April 20, 2009
Here are some of the links where you can submit your site for free for crawling. 1. Google : Click Here 2. Yahoo : Click Here 3. MSN : Click Here 4. Guruji : Click Here 5. Alexa : Click Here
Posted by: Amit Nazare on: April 20, 2009
There are three types of CSS styles: 1. Inline Styles : Inline styles are nothing but the styles written in the tag on the document. These styles affect only to the applied tag. EX: <div style=”width:300px;height:30px;float:left;”>Some text here </div> 2. Embedded Styles : Embedded styles are nothing but that are embedded with the head section [...]
Posted by: Amit Nazare on: April 17, 2009
Everyone might have faced problem saying that my sight looks fine in mozilla firefox, but it is off by one or two pixels in Internet Explorer. The CSS will use the rule that it saw at last, that is the one that is defined at last will be used. Ex: li{ margin-left:2px [...]
Posted by: Amit Nazare on: April 16, 2009
Backing up your Drupal site is now very easy, just need to download and install the Backup & Migrate Module. To install the module click on the Administer> Modules check the Backup and Migrate module and enable it and save the settings. Then go to the Administer > Content Management > Backup and Migrate then make [...]
Posted by: Amit Nazare on: April 15, 2009
Here are some of the steps how can you increase your page rank. 1. Update Content : Update your content regulary so that you can have unique content on your site. Which gets you more and more visitors to your site, which indirectly increases your page views and so the page rank also. 2. Inside Linking [...]
Posted by: Amit Nazare on: April 10, 2009
Drupal is one of the best and Award winning CMS, and one of its best feature is taxonomy. New users to Drupal can find it bit difficult to understand this feature at first, which even I found it to be difficult for me at first. Taxonomies are nothing but which allows you classify content into [...]