WordPress Auto Formatting

At times, WordPress can be annoying. I found this true when I recently tried to add shortcodes. I couldn’t get them to display properly on a page due WordPress add < br> tags in between my shortcodes.

Solution:

In you stylesheet place the following code:

br{

display:none;

}

p br{

margin: 15px 0;

}

this allows br tag to only display when they are within the paragraph tag.

... Read More

Margin Bug in IE 6

If you have a floated element such as a div and you place margin-right or margin-left on that element, Internet Explorer 6.0 will double that margin value, causing errors in your html layout. To fix this simply add display:inline; to your floating element.? That should fix the issue.

... Read More

30 Great Website Designs

Need inspiration for design? Visit this page and you will get plenty of great ideas on designs using CSS and graphics.

Some sites are even using Web 2.0. Click here to access this page.

... Read More