Posted by: Amit Nazare on: June 9, 2010
Blocks are nothing but boxes of content, that are displayed in regions such as sidebar or footer on your page. For creating a block go to Administer >> Block >> Add block, you will find a form fill the details of your block and save it. Say for Example you have created a block with [...]
Posted by: Amit Nazare on: March 10, 2010
We all know how to align a table at the center. Just say <table cellspacing="0" cellpadding="0" align="center" wiidth="100%"> its gets the table aligned to the center of the page. In the same way how about aligning a div at the center of the page. There are a few different methods how to make it in [...]
Posted by: Amit Nazare on: December 9, 2009
Well you all might have seen that if you want to give an anchor tag for the whole table, it doesnt work with IE. But it works with Mozilla firefox and chrome. So to make it working with IE what could be the solution. Here is the simple solution just workaround and see it, even [...]
Posted by: Amit Nazare on: November 23, 2009
If you are creating a layout, with some very small heights as custom borders for elements. Usually, what you will do is you’ll just have to add height: XXpx to the style’s declarations and think that it should be fine.but check your page once in IE and you’ll probably know what is the answer. Check [...]
Posted by: Amit Nazare on: November 13, 2009
As we all know that min-height doesn’t work in IE 6. Say for example if your site doesn’t have much content then you web page will end up till the content is there. So if you want to set some minimum height so that the page looks good. If you set some exact height for [...]
Posted by: Amit Nazare on: September 25, 2009
Iframes allow you to load separate html files into an existing document. You can place iframes anywhere in the document and can use CSS and JavaScript to manipulate the properties of the iframe. Example of iframe: <iframe scrolling=”no” width=”500″ height=”300″ src=”iframe-sample.html” frameborder=”0″> </iframe> Content of iframe-sample.html: Say below is the content <a href=”http://www.google.com” title=”Google” >Google</a> [...]