Search code examples
htmlcsswordpressgenesis

Wordpress sidebar has moved to the left of blog content (genesi)


My sidebar area has shifted to the left side of my page - how can I put it back to the right side?

See - https://www.moneynest.co.uk/how-to-increase-your-income-fast/

ID = genesis-sidebar-primary

Using the Genesis framework - I believe the change occurred after a recent automatic update.


Solution

  • Float your content left.

    .content{
       float: left;
    }
    

    This should do it.