- This topic has 2 replies, 2 voices, and was last updated 8 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Header home link adjustment
Hi, I have successfully adjusted the size of my header logo to fit all device sizes by altering the dimensions in functions.php
but the link area does not change with it.
Where can I go to for changing the link area dimensions as well?
Thanks
You can adjust the width of the hyperlink itself (not the image) in the css. What is the link to your site again? I can take a look and let you know which line to change.
Nevermind I found it.
Take a look around line 1956 in your css and remove that code that you added – min-width: 475px min-height: 175px;
and replace it with this –
.header-image .site-title a {
float: left;
height: 110px;
width: 310px;
}
That will adjust the width and height to match the size of your image. The hyperlink is actually invisible and sits on top of the header image/logo. Once you adjust the hyperlink size it will show up right in place so when you click the image it will work as normal.