• Hi,

    I’ve been using Spun for a few years now and absolutely love it. As my blog has progressed I’ve been wanting to make some tweaks, one of which is to move the titles on the homepage circles to under the circles.

    Does anyone know if/how that’s possible? Thank you in advance!

    My blog url is https://whiskedaway.co

    -Hailey

Viewing 2 replies - 1 through 2 (of 2 total)
  • @haileyyshay – try this in your child theme / custom css area.

    #content {
            display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
     
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .hentry, .hentry:hover {
        display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
    }
    .hentry {
        height: auto;
    
        }
    
    .blog .hentry a .attachment-home-post, .blog .hentry a .attachment-home-post:hover, .blog .hentry:hover a .attachment-home-post {
        height: 180px;
    
    }
    
    .hentry .thumbnail-title {
            color: #333;
            position: inherit;
    
    }
    
    .blog .hentry a  {
    
    	-webkit-transition: none;
    	-moz-transition: none;
    	-o-transition: none;
    	-ms-transition: none;
    	transition: none;
    
    }

    Sorry I don’t have the theme installed so this was code was tried via the link you gave – maybe there is a setting for it

    Thread Starter haileyyshay

    (@haileyyshay)

    @salsaturation, thank you so much! This works great, you nailed it ??

    Two questions, and no worries if you don’t have time to answer them. I’m wondering if there’s a way to center the title under each circle, and make it a little smaller?

    Thank you again for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post Titles Under Circles’ is closed to new replies.