removing social media icons

Discussion in 'Themia WordPress Theme' started by akoni5, Feb 11, 2014.

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

    akoni5 New Member

    Joined:
    Dec 30, 2013
    Messages:
    26
    Likes Received:
    0
  2. akoni5

    akoni5 New Member

    Joined:
    Dec 30, 2013
    Messages:
    26
    Likes Received:
    0
  3. Gourav

    Gourav Support Staff

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

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .simplesocialbuttons {
    display: none;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  4. akoni5

    akoni5 New Member

    Joined:
    Dec 30, 2013
    Messages:
    26
    Likes Received:
    0
    Thanks a lot however this code removes social media from every single page now and all I wanted was to remove it from two pages. Is that restriction possible?
    A
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Through page id selector you can apply css style code only for specific pages.

    Firstly go to the Pages > All Pages in your dashboard and hover the edit option of that page from which you want to remove the social media icon and copy its page-id number.

    See the image for reference
    [​IMG]

    Now, add that page id in the css code given below( current page id is 2)
    after that paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .page-id-2 .simplesocialbuttons {
    display: none;
    }
     
    This will solve your issue.
     
  6. akoni5

    akoni5 New Member

    Joined:
    Dec 30, 2013
    Messages:
    26
    Likes Received:
    0
    great- thank you

    A
     
Thread Status:
Not open for further replies.

Share This Page