• Resolved smartphonenation

    (@smartphonenation)


    Hey guys!

    Just got the free revolution theme and I am having some trouble.
    My site is:

    As you can see, many of my articles are not aligned right with this theme. Is there an easy fix for this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • the problem is less with your articles than it is with the image placement.

    WP 2.6 includes some additions/revisions to how floating images are handled. These changes don’t necessarily play nice with older themes.

    try adding the following code to your theme’s style.css and see if you cant work up a solution from there:

    .aligncenter,
    div.aligncenter {
       display: block;
       margin-left: auto;
       margin-right: auto;
    }
    
    .alignleft {
       float: left;
    }
    
    .alignright {
       float: right;
    }
    
    .wp-caption {
       border: 1px solid #ddd;
       text-align: center;
       background-color: #f3f3f3;
       padding-top: 4px;
       margin: 10px;
       /* optional rounded corners for browsers that support it */
       -moz-border-radius: 3px;
       -khtml-border-radius: 3px;
       -webkit-border-radius: 3px;
       border-radius: 3px;
    }
    
    .wp-caption img {
       margin: 0;
       padding: 0;
       border: 0 none;
    }
    
    .wp-caption p.wp-caption-text {
       font-size: 11px;
       line-height: 17px;
       padding: 0 4px 5px;
       margin: 0;
    }
    Thread Starter smartphonenation

    (@smartphonenation)

    I added that code, but did not fix it unfortunately. Anything else that may help?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Help with free Revolution theme’ is closed to new replies.