Menu has been disappeared

  • Unknown's avatar

    For no reason, without doing anything the primary and secondary menu have been disappeared…

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, I see the primary menu on your site and I see social icons in your footer. Are you still having problems with this?

  • Unknown's avatar

    I just put them back, but they were gone for no reason…moreover, I had a fb icon on the right hand side of the primary menu which is not there now

  • Unknown's avatar

    there is the link but it it like hidden, you cannot see the icon

  • Unknown's avatar

    On the FB icon, you have hotlinked from another site and that site no longer exists or is down: http://www.dundeesportcity.com/ .

    This is the URL of the FB icon in your custom CSS: http://www.dundeesportcity.com/wp-content/themes/dundeesportcity/images/facebook.gif

    You will need to find another FB icon and then upload it to your media library and replace the URL in the following custom CSS rule.

    .menu-item-4164 a {
        background: rgba(0, 0, 0, 0) url("http://www.dundeesportcity.com/wp-content/themes/dundeesportcity/images/facebook.gif") no-repeat scroll 0 0;
        height: 20px;
        text-align: left;
        text-indent: -9999px;
        width: 20px;
    }

    If you upload it to your media library, no one can delete it out from under you.

    Not sure why the menus would have disappeared by themselves. I looked through the audit log and don’t see any indication of them being disabled or anything. If it happens again, let us know.

  • Unknown's avatar

    I have done it but i cannot see the icon, just the edge of it…usually it was on the right hand side, next to the ”contact”. Again it is there, just not visible (if you place the cursor you will notice

    Another thing, how can I make the artists drop down menu to come into 2 columns?

  • Unknown's avatar

    Hi, the image is a bit larger than the area available to it. Add a background-size: contain; declaration to the that CSS rule and the image will appear. It should look like this when you are done.

    .menu-item-4164 a {
    	text-align:left;
    	text-indent:-9999px;
    	background:url('https://9thartwave.files.wordpress.com/2016/10/facebook-like-button-blogger-comments-section.jpg') no-repeat;
    	width:10px;
    	height:10px;
    	background-size: contain;
    }

    If you wish to have the icon larger, simply edit the height and width values. Since the icon is square, use the same value for both.

  • Unknown's avatar

    many thanks…what about the drop down secondary menu?

  • Unknown's avatar

    You have set the submenu to 3 columns in your custom CSS. Find the following rule in your custom CSS and change the 3 locations for “3” to “2”.

    nav[role="navigation"] li ul.sub-menu {
    	background:#fff;
    	width:500px;
    	height:230px;
    	columns:250px 3;
    	column-gap:0;
    	-webkit-columns:150px 3;
    	-webkit-column-gap:0;
    	-moz-columns:150px 3;
    	-moz-column-gap:0;
    }
  • Unknown's avatar
  • Unknown's avatar

    Hooray and you are welcome!

  • The topic ‘Menu has been disappeared’ is closed to new replies.