Viewing 12 replies - 16 through 27 (of 27 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I am helping, David.

    Add this;

    #social-media-icons {
     margin-top: 0;
    }

    and change my last excerpt of code from my prior code,
    from this

    #social-media-icons {
     position: absolute;
     right: 0;
     bottom: 0;
     z-index: 2;
    }

    To this;

    #social-media-icons {
     position: absolute;
     right: 0;
     top: 0;
     z-index: 2;
    }

    Thread Starter davidgabunia

    (@davidgabunia)

    So right now I have this in my Custom CSS section:

    #access,
    #header {
    position: relative;
    }

    #social-media-icons {
    margin-top: 0;
    }

    #social-media-icons {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    }

    Is i right? does not work

    Thread Starter davidgabunia

    (@davidgabunia)

    WOW! I see the second facebook and youtube images, but not the first one

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Yes.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I don’t know how you set those social icons, but there simply aren’t any other social icons other than the ones you see, being outputted to the browser.

    Thread Starter davidgabunia

    (@davidgabunia)

    You know, I can not the first images just because they are too pale.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Then you need to change the image itself https://sandroshakulashvili.com/wp-content/themes/pinboard/images/youtube.png for each social icon.

    Thread Starter davidgabunia

    (@davidgabunia)

    Yes I know ?? So, it works ??
    Omg I’m so thankful ??

    Thread Starter davidgabunia

    (@davidgabunia)

    How can I change the position of the buttons?
    I mean padding, margin etc.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You can use the top and right values in the #social-media-icons selector.
    E.g;

    #social-media-icons {
     position: absolute;
     right: 10px;
     top: 10px;
     z-index: 2;
    }

    Thread Starter davidgabunia

    (@davidgabunia)

    Ok, thx again.
    RESOLVED

    dberm22

    (@dberm22)

    Thanks, but I had to use this code to get it to work:

    a.social-media-icons,
    #social-media-icons {
    position: absolute;
    margin-right: 20px;
    margin-top: 0;
    right: 0;
    top: (YOUR HEADER HEIGHT IN PIXELS +11) px;
    z-index: 2;
    }

    Check it out… My Site

Viewing 12 replies - 16 through 27 (of 27 total)
  • The topic ‘Social buttons in menu area’ is closed to new replies.