Post Display – smaller images to side?

Support Area Forums Elite Post Display – smaller images to side?

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: http://
  • Author
    Posts
  • #36684
    glen hearnden
    Participant

    Hi,

    Hope this is a quickie for you….

    Does the Elite theme allow for any alteration tot he display of Posts on a Blog page?
    Currently the standard big image above the title and text.

    Is there a way to alter the displaying of Posts, perhaps altering the size of the image to a smaller image and moving it alongside texts rather than above?

    any assistance appreciated as always.

    Paul

    #36691
    Bill Robbins
    Moderator

    Hi Paul,

    One option would be to float the featured images to the left and allow the title and other text to go to the right. Add this to the Custom CSS box in the Advanced tab of your theme options page to do that:

    
    @media only screen and (min-width: 768px) {
    
    	.blog .post img.feature,
    	.archive .post img.feature {
    		float: left;
    		width: 40%;
    		margin-right: 30px;
    	}
    
    }
    
    .page-title {
    	overflow: hidden;
    }
    

    That will line them up on the left on larger screens but leave smaller ones as they are. Feel free to adjust the size of the image and margin above to fit your ideas.

    Hope that helps out,
    Bill

    #36694
    glen hearnden
    Participant

    Thanks as always Bill – top job

    #36696
    Bill Robbins
    Moderator

    Happy to help out Paul

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Post Display – smaller images to side?’ is closed to new replies.