Lower icon

Hello,
on my site http://www.mockup.bethanyplace.com/ I am trying to get one of my icons to be further down so that it is at the same level as the ball beside it. The VBS icon is further up. How do I go about lowering it? I am using the code the same I would go about adding social icons. Also, is there a way to only have it in the header and not in the footer? The code that i am using for the VBS is as follows is:

// For VBS
$output .= ’ <img class=“footer-logo mbm” style=“width: 22px” src=“http://www.mockup.bethanyplace.com/wp-content/uploads/2018/06/rome.jpg”’;

Hi There,

Can you please add this CSS to your theme option -> Global CSS and let us know if that works.

.x-social-global a {
 vertical-align: top;
}

Hope this is something you are looking for.

Thanks

Thanks so much! That helps alot. Is there a way to just have the two seperate icons (sports camp, & VBS) only in the header and not the footer?
Thanks!

Hi @tech13

That’s the snippet you need to do that:

footer .x-social-global .VBS, footer .x-social-global .SportsCamp {
    display: none;
}

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.