By using a web inspector I’ve found a
<div id="logo">
which when you click refreshes the page. It is the containing div for the link logo and image logo.
I don’t want this behavior.
How can I find out where it is being set to do this?
It is for the main logo here on the front page here:
If you notice the whole top is click-able. I only want the logo to be clickable.
It isn’t the
<div>causing your page to refresh, it is the<a>contained inside it. The logo is linked to the home page, a universally common practice.Though its dimensions are much smaller than the parent
<div id='logo'>, the<img>hasdisplay: block;so the containing<a>will fill the entire parent<div id='logo'>. If you remove thatdisplay: block;the containing<a>won’t expand to fill the whole parent<div id='logo'>and only the image area itself will be clickable.