• So Im pretty new to designing my own template and have so far got the majority working. however there is one page my site that acts as a blog. When I add content it spills over and does not expand. I need some help to fix this
    see here http://projectmyfault.com/latest-work/

    the other thing I would like to add is the titles and dates of each post but Im not sure where to start with this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You might want to start by validating your theme.

    To dix the overflow issues, edit style.css (line 180) and change:

    #content p {
    float:left;
    margin-left:30px;
    padding-left:100px;
    padding-top:30px;
    }

    to:

    #content p {
    margin:0 30px;
    padding:30px 0 0;
    }
    Thread Starter ProjectM

    (@projectm)

    thanks there. new to this. think I fixed the issue

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Im trying to expand my content and container div to accomidate new content’ is closed to new replies.