Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1212605

    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

    IMAGE 1
    IMAGE 2

    #1212811

    bump

    #1212873

    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 ? ;)

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.