how to change to full width in Blogum

  • Unknown's avatar

    I think that i am being incredibly dense but I just cannot seem to work out how to switch to full width mode and so remove side column. I’ve looked everywhere on my posts page for something that allows me to do this, but I can’t seem to find it. If anyone can help, that would be much appreciated.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To give you a starting point for editing the layout of the Blogum theme, here is some CSS that moves the meta data from the left of posts to the top and makes the main content area wider:

    .post-meta {
    	width: 100%;
    }
    
    .post-date,
    .post-categories,
    .comments-link,
    .post-edit {
    	display: inline-block;
    	font-size: 16px;
    	background: none;
    	margin: 0;
    	padding: 0;
    }
    
    .post-meta * {
    	float: left;
    	padding-right: 0.25em;
    }
    
    .post-content {
    	width: 705px;
    }
  • The topic ‘how to change to full width in Blogum’ is closed to new replies.