• I found guidance that worked to change from circle to square.
    But I want to make the featured image size a bit larger. When you mouseover the image it goes to size I want. Is there way to make this larger size fixed?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Add the following to your Custom CSS Panel in Customiz’it:

    .round-div {
      -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
      transform: scale(1.4);
    }
    @media (max-width: 979px) {
       .round-div {
          -webkit-transform: scale(1.3);
          -ms-transform: scale(1.3);
          transform: scale(1.3);
    }

    How can I make the featured image smaller on the front page (100px high)?
    I have reduced it on the front page, but when I minimize the screen or see it on a smart phone there is a lot of space between the image and the featured pages title.

    Making the image sizes smaller will not make the whitespace issues go away. You need to concentrate on all the top and bottom margins/padding of all the elements in the chain (use Firebug).

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Increase Size of Featured Image on Front Page’ is closed to new replies.