Wordpress REVOLUTION theme tweaks #1
September 16, 2008 by tibor
This is pretty specific to the Wordpress theme I purchased from http://www.revolutionthemes.com/.
The desired outcome is displayed in the following 2 images (click on images to get the full size displayed:
and 
On the default REVOLUTION theme to align text better with the bottom 3 image you need to change 3 sections in the theme’s style.css file.
The 3 sections to look for are:
- #homebottomleft img {
- #homebottommiddle img {
- #homebottomright img {
Change the second px setting on the margin line from 0px to 5px or whatever number of pixels work for you in all 3 instances. Example 1 is displayed below:
BEFORE
#homebottomleft img { float: left; border: 2px solid #999999; margin: 0px 0px 10px 0px; }
AFTER
#homebottomleft img { float: left; border: 2px solid #999999; margin: 0px 5px 10px 0px; }


