randomDino Posted March 1, 2020 Share Posted March 1, 2020 The following code in the footer is producing multiple copies of the <a/> tag, screen shot attached. What went wrong? <div style="text-align:center"> <h3> Decisive Wife </h3> <a href="https://apps.apple.com/us/app/" style="display:inline-block; overflow:hidden; background:url(/s/Download_on_the_App_Store_Badge.svg) no-repeat; width:135px; height:40px;"/> </div> Link to comment
tuanphan Posted March 1, 2020 Share Posted March 1, 2020 your code will apply to all a tag entire site. <a href="https://apps.apple.com/us/app/" style="display:inline-block; overflow:hidden; background:url(/s/Download_on_the_App_Store_Badge.svg) no-repeat; width:135px; height:40px;"/> edit it to <a href="https://apps.apple.com/us/app/" class="tuanphan"/> and insert this to Design > Custom CSS .tuanphan { display:inline-block; overflow:hidden; background:url(/s/Download_on_the_App_Store_Badge.svg) no-repeat; width:135px; height:40px; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.