Everything Stuck to left

I’ve been creating a wordpress theme from a html template I designed and I’ve got mostly everything working except for the content section being stuck to the left.

you can see it here: http://www.divisionforty.com/wall/events/

Read More

I hope someone can guide me to fixing thins

Related posts

Leave a Reply

1 comment

  1. Do you want that everything is stuck to the left, or that is the problem and you want it to be in the center or right ?

    Have you tried:

    {
    float:right;
    }
    

    or

    {
    position:absolute;
    right:0px;
    }
    

    or

    {
    position:fixed;
    top:30px;
    right:5px;
    }
    

    What have you tried?