• Resolved Kaoskuri

    (@kaoskuri)


    Is there a way that I can change the size of the Social Network Bar and Icon? I would like to make it smaller on my page so that it looks like a small band at the top of the site. If there is a way, where in the code or stylesheets can I make that change?

Viewing 4 replies - 1 through 4 (of 4 total)
  • This can be a bit complicated as there are many things needs to be touched in CSS. Social icons are images and you need to resize the size of images which can be found at : celestial-lite/images/sprite-social.png

    and related CSS are on the style.css file which you need to amend are :

    /* social group */
    #st-socialbar-wrapper {
    	height: 40px;
    }
    #st-socialbar {
    	position: relative;
    	display: inline-block;
    	height: 26px;
    	float: right;
    	margin-left: 6px;
    	top: 7px;
    }
    #st-socialbar a {
    	display: block;
    	width: 26px;
    	height: 26px;
    	margin-left: 10px;
    	float: left;
    }
    #st-twitter{
    	background: url('images/sprite-social.png') 0 0 no-repeat;
    }
    Thread Starter Kaoskuri

    (@kaoskuri)

    Ok, I will use the provided CSS as a guide to modify my CSS as needed. Thanks so much.

    Thread Starter Kaoskuri

    (@kaoskuri)

    I was able to find the CSS code and the sprite-social.png file but every time I try and change or resize anything in either the CSS or png file, the icons keep disappearing and aren’t showing up on the bar. I may just end up leaving this alone and keeping it as it is.

    Thanks for all the help. =)

    Thread Starter Kaoskuri

    (@kaoskuri)

    If I want to move the LinkedIn logo a few pixels to the left, how can I do that in the code?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Social Network Bar Size’ is closed to new replies.