Geocraft - Remove "Premium" listing formating - previous fix didn't stick

Discussion in 'GeoCraft WordPress Theme' started by TSMM, Mar 16, 2013.

  1. TSMM

    TSMM Member

    Joined:
    Dec 28, 2011
    Messages:
    65
    Likes Received:
    2
    1. We don't want to offer a FREE listing option so all listing will be PREMIUM, but we want to remove the highlighting and the premium image imposed on a listing. Previous fix didn't work - http://www.inkthemes.com/community/threads/geocraft-remove-premium-listing-formating.3119/
    Website is:- http://inghamnorthqld.com.au/
    The code I have in the Custom Code box is now:-
    .header_wrapper .header{
    background: #FFFFFF url('images/blackln.png') top center no-repeat;
    }
    .header_wrapper .logo_wrapper .logo img{
    max-width:900px;
    height: 274px;
    a:link{
    text-decoration: none;
    color: #0F4F11;
    }
    a:hover{
    text-decoration: underline;
    color: #167F1A;
    }
    .tabbed .tabnav li a {
    display: none;
    }
    .star_rating,
    .review_desc,
    .article_rating,
    .r_rating{
    display:none;
    visibility:hidden;
    height:0;
    }
    .footer .widget_inner {
    color: #006600;
    }
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited{
    color:black;
    }
    .content_wrapper .featured_content .featured_post .featured .featured_thumb img.ribbon {
    display: none;
    }
    .content_wrapper .featured_content .featured_post .featured {
    background: none;
    padding-left:0px;
    }
    .content_wrapper .featured_content .featured_post .featured .featured_thumb img.ribbon {
    display: none;
    }
     

    Attached Files:

  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Tracy,

    Second code you have added is wrong. It is not closed "}" properly. That's why code below it is not working.

    .header_wrapper .logo_wrapper .logo img{
    max-width:900px;
    height: 274px;


    Paste this code in custom css. It will work fine.

    Code:
    .header_wrapper .header{
    background: #FFFFFF url('images/blackln.png') top center no-repeat;
    }
    .header_wrapper .logo_wrapper .logo img{
    max-width:900px;
    height: 274px;
    }
    a:link{
    text-decoration: none;
    color: #0F4F11;
    }
    a:hover{
    text-decoration: underline;
    color: #167F1A;
    }
    .tabbed .tabnav li a {
    display: none;
    }
    .star_rating,
    .review_desc,
    .article_rating,
    .r_rating{
    display:none;
    visibility:hidden;
    height:0;
    }
    .footer .widget_inner {
    color: #006600;
    }
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited{
    color:black;
    }
    .content_wrapper .featured_content .featured_post .featured .featured_thumb img.ribbon {
    display: none;
    }
    .content_wrapper .featured_content .featured_post .featured {
    background: none;
    padding-left:0px;
    }
    .content_wrapper .featured_content .featured_post .featured .featured_thumb img.ribbon {
    display: none;
    }
     
  3. TSMM

    TSMM Member

    Joined:
    Dec 28, 2011
    Messages:
    65
    Likes Received:
    2
    Thanks Nitesh, that also fixed another problem I had with review stars showing. So now it looks a lot better. I think we're getting it a lot closer to perfect. :) http://inghamnorthqld.com.au
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Tracy,

    Nice site.
    Keep it up :).
     
    TSMM likes this.
  5. TSMM

    TSMM Member

    Joined:
    Dec 28, 2011
    Messages:
    65
    Likes Received:
    2
    Thanks Nitesh... only because you guys give great support. I could never have done this without your support. Thanks.
     

Share This Page