• I need the following styling to the plugin for matching up the site:
    – Display Title in Center
    – Change Color of Title
    – Change font size of Title using H3
    – I want Zoom effect on Hover to the image as I’ve done with some images on the home page of this site.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    All of these features are available in the pro version of the plugin.

    1. Center the title and change the font size:

    h3.wp-show-posts-entry-title {
        text-align: center;
        font-size: 20px;
    }

    2. Change the color of the title:

    h3.wp-show-posts-entry-title a {
        color: #000000;
    }

    3. Hover effect:

    .wp-show-posts img {
        transition: transform .3s;
        margin: 0 auto;
    }
    
    .wp-show-posts img:hover {
        transform: scale(1.1);
    }
    Thread Starter vikki237

    (@vikki237)

    Thanks Tom for the support! Everything worked except the Font Color. Can you please have a check as Link color is overriding the Title color…

    Plugin Author Tom

    (@edge22)

    I’m not seeing the link color CSS added, but you could try this:

    .inside-article h3.wp-show-posts-entry-title a {
        color: #000000;
    }
    Thread Starter vikki237

    (@vikki237)

    Thanks Tom.
    I’ve adjusted the page for many things and it even loads faster than the current home Page. I am fine tuning this page as it’s getting ready to become a front page for the site.
    Another issue I am facing is of ‘double links to posts’, one through image and other through text.
    When I checked this kind of thing on my competitor’s (Roastycoffee dot com) page, he just had single outgoing link for each of his posts. Can we overcome this thing?

    • This reply was modified 5 years, 9 months ago by vikki237.
    Plugin Author Tom

    (@edge22)

    We can remove the link on the image like this:

    add_filter( 'wpsp_disable_image_link', '__return_true' );

    Adding PHP: https://docs.wpshowposts.com/article/adding-php/

    Let me know ??

    Thread Starter vikki237

    (@vikki237)

    Can’t we combine the whole image and anchor into a single link like the compatitor Roastycoffee?

    Plugin Author Tom

    (@edge22)

    As of right now, you’d likely have use javascript, unfortunately.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Help in Custom Styling of Display Post’ is closed to new replies.