Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] WordPress CSS confusion – BASIC

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #29627
    tannercampbell
    Participant

    Hi folks,

    This is probably an easy fix for anyone who knows what they’re doing, and I’m embarrassed for posting it. I’m working on my company site, and I’m trying to create a very basic WordPress theme that matches the site layout — for the meantime I’m testing it on my personal server: http://toceffect.com as you can see the header is centered, but the rest of it is not … this is frustrating the bajesus out of me. I’ve tried building a table around the index.php and footer.php ref’s but it doesn’t seem to have an effect. Below is the CSS, I’m pretty sure that’s where the answer is … I simply can’t figure it out.

    Code:
    body {
    text-align: center;
    width: 975px;
    margin-left: auto;
    margin-right: auto;
    }

    #wrapper {
    display: block;
    border: 1px #a2a2a2 solid;
    width:975px;
    margin-right: auto;
    margin-left: auto;
    }

    #header {
    border: 2px #a2a2a2 solid;
    }

    #content {
    display: block;
    width: 975px;
    margin-left: auto;
    margin-right: auto;

    }

    #delimiter {
    clear: both;
    }

    #footer {
    border: 2px #a2a2a2 solid;
    }

    .title {
    font-size: 11pt;
    font-family: verdana;
    font-weight: bold;
    }

    Like I said, I can’t imagine that answer is that difficult … but then again maybe I’m just underestimating myself. Any help or solutions would be amazing. Thanks everyone.

    Tanner Campbell

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.