Tag Archives: css

New fluid, near image-less WordPress theme for CCM

First Draft I thought it would be neat to explain my thought process and show my progress as I went through creating the new CCM theme. I knew I wanted to make the theme have a console feel to it, but still be modern.  I am NOT a designer, but I tried ;(.Things I knew [...]

How To Put Text Beside A Picture With HTML,CSS

What you are probably looking for is the float property. You can use float:left; or float:right; (there are other options as well, but these are most common). you would do something like this <img src=”image path” style=”float:left; padding:5px; border:0px;” /> This will allow text or anything else to be next to the image.  The padding [...]