How do I remove the blue border on Scroller template?

When I click the link to scroll the the designated section, there is a blue border around the row/section I’m linked to. Is there a way to remove the border?

Hi Scott,

Can you provide a link to your site, please. So we can take a closer look.

Thanks,
Danny

Here it is! sorry took so long.

http://skruss.info/gatewooddigital/

Hey Scott,

Can you try adding the CSS snippet below and see if it works?

:focus {
  outline: none;
}

Ben

That worked, Ben. Thank you!

Real quick, can you explain the :focus element. It looks generalized and not specific to any one thing??

Scott

No worries, Scott! Take a look at the link below for more info. :slight_smile:
http://www.w3schools.com/cssref/sel_focus.asp

Ben