Hi,
I can’t post a URL, since I’m still working with the site on localhost.
What I’d like to do, is have the logo removed when the screen size goes below about 510px wide. I tried watching a video about modifying the logo, but it seemed a bit dated.
I have added a custom.css file, wherein I placed code to modify the logo to be slightly larger. Here is what I’ve added:
.logo-image a {
background-image: url(“../images/hss-logo-200×36.png”);
display: block;
padding: 6px 10px 0;
width: 200px;
height: 36px;
}
.t3-mainnav {
background: #fff;
border-bottom: solid 1px #d5d5d5;
height: 50px;
}
I suppose I’d have to add something like display: none; to a class. Thing is, I don’t know which class.
Hope you can help.