• Resolved lakshithacooray

    (@lakshithacooray)


    I was thinking of changing the 3 row social widget to 2 and make it a little bigger thumbnail and add bigger header and more space for text with justify aligned. Please help

Viewing 1 replies (of 1 total)
  • Some quick steps to do this would be:
    – create a child theme and overwrite the fp-services.php file from that child theme
    – search for service col-md-4 and replace with service col-md-6
    – if it looks strange, add this to a custom CSS plugin:

    .service:nth-of-type(3n+1) {
       clear: none;
    }
    .service:nth-of-type(2n+1) {
       clear: left;
    }

    As you can see from these steps, it would take some work to get this done.

Viewing 1 replies (of 1 total)

The topic ‘Resize Service Widget?’ is closed to new replies.