its hard to say without seeing the code you have implemented. can you share the url?
Thread Starter
Dubs
(@christianjameswagnergmailc)
first off, i would recommend recoding your website in such a way that doesn’t make use of tables as a primary method for structure. I would also recommend getting rid of the “hot spots” you are referring to.
to answer your question on how to fix the little blue thing that is showing up, it is a :focus state on an element. add this to your css to get rid of that style
area:focus,
input:focus,
textarea:focus {
border: none;
}
Thread Starter
Dubs
(@christianjameswagnergmailc)
first off, i would recommend recoding your website in such a way that doesn’t make use of tables as a primary method for structure. I would also recommend getting rid of the “hot spots” you are referring to.
to answer your question on how to fix the little blue thing that is showing up, it is a :focus state on an element. add this to your css to get rid of that style
area:focus,
input:focus,
textarea:focus {
border: none;
}
Thank you! And I will work on what you said!
Thread Starter
Dubs
(@christianjameswagnergmailc)