Hi,
I have setup my site and have noticed some spacing issues but do not know how I can correct these.
I have also noticed that when I hover over the search icon, it doesn’t fill correctly with colour.
stupidstickers.co.uk
search icon: you have set the padding-right to 0
.html_main_nav_header.html_logo_left #top .main_menu .menu > li:last-child > a ,
.html_bottom_nav_header #top #menu-item-search > a {
padding-right: 0;
}
on default it is 13px – so delete this setting
you can add to your logo a little padding – and maybe for non-responsive case a little top positioning:
.logo img {
padding: 5px;
}
@media only screen and (min-width:768px) {
.logo img {
top: 5px;
}
}
for centering the menu in relation to logo – maybe you better adjust logo position a bit.
PS: Bumping but then no interest on a solution ? ;)