Responsive menu and navigation bars

Homepage Community Forums Oasis Theme Support Responsive menu and navigation bars

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #25939
    Tansey L
    Customer

      Hi,
      I have looked through the forums for help on this topic and tried several different CSS codes but nothing has worked for me.

      The issue I’m having is that I cannot see the navigation bars on the mobile version of the site. Also, I am not seeing the option to view my sub menus on the mobile version either.

      https://thestudentshed.com/

      If it helps, you may see below my existing changes I added to the CSS area of the Customizer.
      .site-header {
      background-color: #FFFF;
      }
      .site-footer {
      background-color: #134074;
      }

      .genesis-nav-menu a {
      color: #313638;
      font-size: 16px;
      font-weight: 625;
      }
      .footer-widgets {
      background: #134074;
      color: #FFFF;
      }
      .genesis-nav-menu .sub-menu a {
      background-color: #ffff;
      }

      Thanks in advance for your help.

      #25940
      Wes
      Moderator

        Hi Tansey, The menu is showing up, but since the background is changed to white, the text won’t show up since it’s also white. So once we change the color it will show

        If you’re already making edits to your style.css file directly, then you can look around line 1145 and change the color from #fff to #333 or whatever color you want.

        .menu-toggle,
        .sub-menu-toggle {
        	background-color: transparent;
        	border-width: 0;
        	color: #333;
        	display: block;
        	margin: 0 auto;
        	overflow: hidden;
        	text-align: center;
        	visibility: visible;
        }

        If you’re adding custom css on a separate file or using the customizer css then you can copy that code above and add it there.

        This site looks great so far! Please let me know when you’re done so I can share your work!

        Let me know if this helps.

        #25941
        Tansey L
        Customer

          Thank you Wes! I used the code and it worked to show both the word “Menu” and the arrows for the sub menu.
          However, it seems as though both of these things are showing in the desktop view as well. What I mean is that the arrows are located in the middle of my menu labels and the word menu remains on screen.
          Here’s a link to the screenshot.
          https://imgur.com/a/KIelJgN

          #25942
          Wes
          Moderator

            When I add the code it only shows on the desktop. There is already CSS that is supposed to hide the “Menu” text from showing on desktop, unless that part of the code was edited in some way?

            Can you add the code on the live site so the issue can appear? I’ll be able to see directly what’s going on.

            Here’s all the code you need to change the Menu text color –

            .menu-toggle,
            .sub-menu-toggle {
            	color: #333;
            }

            I removed the other parts that weren’t needed.

            #25943
            Tansey L
            Customer

              Okay this last code you gave me seems to work. Thank you very much. I’m done with the site now. 🙂

              #25944
              Wes
              Moderator

                Glad it’s working! Just shared on Twitter!

                #25945
                Tansey L
                Customer

                  Thank you very much.

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