How to Make Paid Listings look Like Unpaid listings in the Search Results

Discussion in 'GeoCraft WordPress Theme' started by tasburyjr, Jul 21, 2013.

Thread Status:
Not open for further replies.
  1. tasburyjr

    tasburyjr Member

    Joined:
    Jul 20, 2013
    Messages:
    44
    Likes Received:
    4
    I only allow paid listing on my site, so I want all listings to look like the non paid listings in the Search Results (i.e. remove Premium Banner and Remove the Blue background box)

    I can remove the Premium Banner, but Not sure how to remove the blue box and other padding changes to make paid listings look like unpaid listings. Any help, will be greatly appreciated.


    NOTE:
    I was able to remove the Premium Banner by putting this in the Custom:
    .content_wrapper .featured_content .featured_post .featured .featured_thumb img.ribbon {
    display: none;
    }
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Geocraft Settings > Theme Option > Styling Option > Custom CSS

    Code:
    .content_wrapper .featured_content .featured_post .featured{
    background:none;
    }
     
  3. tasburyjr

    tasburyjr Member

    Joined:
    Jul 20, 2013
    Messages:
    44
    Likes Received:
    4
    SOLVED. What you gave me worked for most part. I had to add some padding fixes. For anyone else looking for this solution please see the complete custom code needed, including to remove the ribbon.

    Code:
    .content_wrapper .featured_content .featured_post .featured {
    background:none;
    padding-left:0px;
    padding-top:0px;
    padding-bottom:0px;
    }
    .content_wrapper .featured_content .featured_post .featured .featured_thumb img.ribbon {
    display: none;
    }
     
Thread Status:
Not open for further replies.

Share This Page