• Resolved madeaux

    (@madeaux)


    I’m having some trouble figuring out what is going on with the content area of this site! http://www.ashevillelawns.com.

    I’d like to get rid of the huge margin on the right side of the content, but can’t figure out where it’s coming from. Anyone willing to take a shot? This is one of those cases where I’ve spent so much time trying to figure it out and it probably just needs another set of eyes.

Viewing 2 replies - 1 through 2 (of 2 total)
  • in /wp-content/themes/thematic/library/layouts/2c-r-fixed.css

    this style is restricting the content width:

    #content {
        margin:0 0 0 10px;
        width:540px;
        overflow:hidden;
    }

    change it to:

    #content {
        margin:0 0 0 10px;
        width:600px;
        overflow:hidden;
    }

    evaluated with the web developer add-on for firefox; untested for effects on other pages; only checked in ff3.6

    Thread Starter madeaux

    (@madeaux)

    Thank you alchymyth! You have probably saved me hours more of frustration. much love.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘content width issue’ is closed to new replies.