Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author presscustomizr

    (@nikeo)

    Hi, the theme uses the class .sticky for sticky posts.
    Just find the css selectors you need for thumbnails and read more by opening your browser dev tool and make them more specific (from a css standpoint) with the .sticky classes placed before.
    Hope this helps!

    Thread Starter SFIQUET

    (@sfiquet)

    I have found .entry-summary but no .sticky.

    None of your posts seem to be sticky … ?

    Do you simply mean on the blog post list? If so, then take nikeo’s advice above, but place the .blog class before.

    For example, to make the images rectangular, add:

    .blog .round-div {
        display: none;
    }

    Or alternatively, if you still want them round, you can increase the non-hovered size with:

    .blog article .round-div {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
    }

    Thread Starter SFIQUET

    (@sfiquet)

    oh yes i meant on the blog post list ! Sorry to explain wrong, English is not my mother tongue and css even less! 😉
    The round shape is ok but do you know how I can enlarge the pictures on this page and add a “read more” button ?

    I’ve answered how to enlarge above.

    For read more, checkout these posts:
    http://codex.wordpress.org/Customizing_the_Read_More
    http://en.support.wordpress.com/splitting-content/more-tag/

    Thread Starter SFIQUET

    (@sfiquet)

    Thanks for the links.
    Yes you answered above how to enlarge the round effect but i’m looking to enlarge the picture under. 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘customize post's sticky view’ is closed to new replies.