• Resolved Spedwards

    (@spedwards)


    So I’m trying to get my Social links working and so far, I’ve had no luck at all.

    I looked at the CSS for it and it should work, the CSS selector is something along the lines of: a[href*=twitter.com]:before but I’m just getting the generic a:before on all my social links.

    Anyone know of a way to fix this?

    EDIT: I saw the icons ONCE so it does work, just rarely.

Viewing 3 replies - 1 through 3 (of 3 total)
  • what is the url?

    Thread Starter Spedwards

    (@spedwards)

    I ended up fixing this issue with a bit of custom CSS

    .social-navigation {
    	a[title=Twitter]:before {
    		content: '\f202';
    	}
    	a[title='Facebook']:before {
    		content: '\f203';
    	}
    	a[title='Reddit']:before {
    		content: '\f222';
    	}
    }

    It appeared as if the character codes where being formatted in the CSS itself which broke the code.

    glad you fixed it. Please mark the thread resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twenty Fifteen Social Menu’ is closed to new replies.