• Hi, I am a newbie here on wordpress and don’t understand the coding stuff just yet. if you go to my website you see the menu on the top right corner under the social media buttons. I want to make the menu go to the bottom of the header to be on the same level as the logo on the left side. could anyone help explain how to do this?

    https://www.bethesalt.net/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Recommended Way :
    1. You need to add Child Theme (https://codex.www.ads-software.com/Child_Themes)
    2. Update style.css with following code

    .menu_main {
      float: right;
      margin-top: 102px;
      width: 75%;
    }

    Short Way:
    But not recommended, In future you are update this theme the code may be loose
    Update your stylesheet (style.css) line number 182

    .menu_main {
      float: right;
      margin-top: 102px;
      width: 75%;
    }
    Thread Starter busy_ricky

    (@busy_ricky)

    okay, new problem.

    I think i can figure out the making of the child theme and all that but It seems like I need to have the files on my computer? I can’t find any tutorial that shows how to do that. All the tutorials I see in making a child theme it shows them going into their files on their computer and editing there and somehow it updates onto wordpress itself. is there another way to make a child theme or could you explain how to get the files to the computer?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘move menu down’ is closed to new replies.