Theme Edits

Discussion in 'GeoCraft WordPress Theme' started by rdeshazer, Apr 30, 2015.

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

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Business Listings on Homepage - www.squirrlit.com
    1. Can a black background with a white boarder be added behind the text of the regular and premium listings. The premium listings section and the recently added.

    2. "Recently Added" text - should be "white & bold".

    3. Categories - font bold

    4. Recent Listing - font bold

    5. SMALL BUSINESS PREMIUM LISTINGS - can the background of this text be transparent currently its black? the background of the text should be the theme background.

    5. Business title is black - should be "white & Bold" http://www.squirrlit.com/listing/apex-temple-court-hotel-london/

    6. "Rating" text color - Bold & red

    7. The location map image - should have a white boarder

    Categories

    Categories
     

    Attached Files:

  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    As per queries:

    1. Can a black background with a white boarder be added behind the text of the regular and premium listings. The premium listings section and the recently added:

    Code:
    .jcarousel-skin-tango {
      background: black;
      border: 1px solid #fff;
    }
    .content_wrapper .featured_content {
      background: black;
      border: 1px solid #fff;
    }
    .content_wrapper .featured_content .featured_post .featured {
      background: black;
    }
    
    2. "Recently Added" text - should be "white & bold":

    Code:
    .content_wrapper .featured_content h1.featured_title {
      color: rgb(255, 255, 255);
      margin-top: 13px;
    }
    3&4) Categories - font bold, Recent Listing - font bold:

    Code:
    .sidebar h4 {
      font-weight: bold;
    }


    5. SMALL BUSINESS PREMIUM LISTINGS - can the background of this text be transparent currently its black? the background of the text should be the theme background:

    Code:
    .content_wrapper .info_bar .info_desc {
      background: none;
    }
    span.info_detail {
      background: transparent !important;
    }
    6. Business title is black - should be "white & Bold" http://www.squirrlit.com/listing/apex-temple-court-hotel-london/ :

    Code:
    .depth_article .title {
      color: #fff;
      font-weight: bold;
    }
    7. "Rating" text color - Bold & red:

    Code:
    .article_rating label.rating {
      color: red;
      font-weight: bold;
    }
    8. The location map image - should have a white border:


    Code:
    .featured_content .map {
      border: 7px solid #fff !important;
    }
    Please paste the code given above in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard

    Hope it will solve your issue.
    Let me know for further doubts.
     
  3. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Thank you
     
Thread Status:
Not open for further replies.

Share This Page