Remove sign in and add listing

Discussion in 'GeoCraft WordPress Theme' started by mlm90, Sep 1, 2013.

  1. mlm90

    mlm90 Member

    Joined:
    Jan 26, 2013
    Messages:
    33
    Likes Received:
    0
    Hi. How do i remove the buttons sign in and add listing from the top of the site?
     
  2. gosmartmobi

    gosmartmobi Member

    Joined:
    Nov 14, 2012
    Messages:
    39
    Likes Received:
    1
    place in theme option ccs style box

    .top_strip .menu .associative_link {
    Display:none:}
     
  3. Gourav

    Gourav Support Staff

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

    Hello,

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

    Code:
    .top_strip .menu .associative_link {
    visibility: hidden;
    }
     
  4. mlm90

    mlm90 Member

    Joined:
    Jan 26, 2013
    Messages:
    33
    Likes Received:
    0
    Thanks it worked perfectly:) But is it possible to change the color of the area where those buttons were, so that it has the same color as the rest of the header
     
  5. Gourav

    Gourav Support Staff

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

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

    Code:
    .top_strip {
    background:red;
    }
    Inplace of "red" put your color code.
     
  6. mlm90

    mlm90 Member

    Joined:
    Jan 26, 2013
    Messages:
    33
    Likes Received:
    0
    I have tried to paste this code:

    .top_strip {
    background:309ed1;
    }

    But it didn't work. Any other sugestions?
     
  7. Nitesh

    Nitesh Support Staff

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

    You have missed #.
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .top_strip {
    background:#309ed1;
    }
     
    mlm90 likes this.

Share This Page