Hi @kanojia,
I think the underline might be added by scripts added using WPCode but I can assure you that WPCode does not load any type of styles in the frontend.
Looking at your site, the styles reboot that adds the underline is coming from https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css so I suggest looking into what is loading that stylesheet on your site.
I had remove all the codes, from wpcode and unistanll the plugin.. the underline disappeared.. and after reinstalling it the underline come back..
this link is from WordPress theme — https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css
I checked header and footer section of plugin… i found this link there.. cdn,jsd..
so its added to format the css of the script which we using it on site..
can you help me how i can remove this underline.. i dont know how to edit this stylesheet or even remving this link from header site break css design
Hi @kanojia,
You can’t edit that stylesheet as it is hosted on a CDN (outside your website). You should be able to override the style by adding a <style> tag after it to override the rule if you want.
Something like this:
<style>
a {
text-decoration: none;
}
</style>
Thank you so much it really helped.
Could you tell me how can I hide JS snippet that i added in plugin from view page source?