Insert Link Before Social Media Links in Top Bar

I’m trying to insert a My Account link before my social media links, but do not want to move my float:left; topbar content.

I was attempting to inject this link through JS, but I’ve had no luck.

This is what my top bar looks like now:

This is how I’d like it to look:

Here is the code I used in my global JS under X > Theme Options (this did not work):
$("<a href="http://www.livemorerealized.com/my-account">My Account</a>").insertBefore( $(".x-social-global"));

Hi There @santosfel5

Thanks for writing in! Could you please try adding the following JavaScript code into your X -> Theme Options -> JS area and see if that helps.

jQuery( ".x-social-global" ).prepend( '<a href="http://www.livemorerealized.com/my-account">My Account</a>' );

Thanks!

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