murdoc_tcc Posted October 6 Share Posted October 6 Hi Everyone. trying to add an additional number on the top of my NavBar As per image. What I want to know why is my Whatapp FA Icon a block, why is it not converting to the WhatsApp Bubble. I need help it is frustrating. This is the Code I am Using. Header.tpl <div class="whatsapp-top-nav"> <a href="https://wa.me/1234567890" target="_blank" title="WhatsApp Us"> <i class="fa fa-whatsapp"></i> <span>+123 456 7890</span> </a> </div> Custom.CSS .whatsapp-top-nav { display: flex; align-items: center; margin-left: 1rem; /* Adjust spacing as needed */ font-size: 1rem; } .whatsapp-top-nav a { color: #fff; /* Match your navbar text color */ display: flex; align-items: center; text-decoration: none; } .whatsapp-top-nav .fa-whatsapp { font-size: 1.2em; margin-right: 0.5rem; color: #25D366; /* Official WhatsApp green */ } and Head.tpl <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> Link to comment Share on other sites More sharing options...
ComGrafPL Posted October 6 Share Posted October 6 Have you tried this instead: <i class="fa-brands fa-whatsapp"></i> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"> 1 Link to comment Share on other sites More sharing options...
murdoc_tcc Posted October 6 Author Share Posted October 6 38 minutes ago, ComGrafPL said: Have you tried this instead: <i class="fa-brands fa-whatsapp"></i> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"> Thank you that worked, thanks so much Link to comment Share on other sites More sharing options...
ComGrafPL Posted October 6 Share Posted October 6 4 minutes ago, murdoc_tcc said: Thank you that worked, thanks so much Mark topic as solved. Enjoy your day. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now