Support » Theme: Attitude » Facebook icon is doubled

  • I saw this on another Attitude site I was trying to set up as well. The Facebook icon is doubled, and I can’t figure how to hide the second icon with CSS. Site here: http://goo.gl/BJqCw. Any suggestions would be much appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You could try and target the last child in the facebook class.

    So something like:

    .facebook a:last-child {
        display:none;
    }

    Thread Starter slips111

    (@slips111)

    Thanks for your help. That got rid of the bad icon, but now it’s not linking out to FB (and yes, I’ve got it linked under “Social Links”.

    Thanks again.

    Sovit

    (@sovitranjitkar)

    Hi slips,

    We just checked your site and we found that there is two attribute name style in the img tag. There should be only one attribute inline CSS style for an element.
    In your header section inside all the tag display unwanted code
    <a href="http://www.blog.joshshoemake.com"> </a>. So it may be the reason to be display a double facebook icon.

    Your code is:
    <img src="http://www.blog.joshshoemake.com/wp-content/uploads/2013/05/notebook.jpg" style="float:right" style="PADDING-RIGHT: 305px">

    It should be:
    <img src="http://www.blog.joshshoemake.com/wp-content/uploads/2013/05/notebook.jpg" style="float:right; padding-right: 307px;">

    edit it as above so that the img tag works properly.

    Thank you !

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Facebook icon is doubled’ is closed to new replies.