• Resolved Asakasan

    (@asakasan)


    Hi Ben, sorry to bother you again, I got a few questions for you. Hope I don’t bother too much!

    Here is a screenshot of my home page.
    https://i.imgur.com/nR2C6JS.png

    1) I’ve chosen a white background, but now Primary Menu cannot be read. How can I change its colors?

    2) Even you can’t see it, Primary Menu is not aligned: not at the center, nor at right/left. Don’t know why.

    3) Is it possibile to have Primary Menu upper the site banner?

    4) I like darkening images, but I’d like that image banner will remain darker even without cursor. Is it possibile?

    Thanks a lot Ben, I really like your theme and appreciate your efforts for us. =)

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Ben Sibley

    (@bensibley)

    No problem ??

    1) Here’s the CSS you can use to change the menu items to a dark gray color:

    .menu-primary-items a {
        color: #222222;
      }
      .menu-primary-items a:link,
      .menu-primary-items a:visited {
        color: #222222;
      }
      .menu-primary-items > li:after {
        color: #222222;
      }
      .menu-primary-items ul a, .menu-primary-items ul a:link, .menu-primary-items ul a:visited, .menu-primary-items ul a:hover {
        color: white;
      }

    2) It’s hard for me to say right now. Could you provide a link to your site, so I can check the code?

    3) Hmm putting it above could be tough. I’d need to check out your site to know for certain.

    4) I’m not completely sure I understand, let me ask a question. Would you prefer the image to be even darker before the mouse hovers over it and then light up, or would you like it to stay dark even when the mouse hovers over it?

    Sorry I couldn’t get more of your questions answered right now! With your response I should be able to send solutions for the rest ??

    Thread Starter Asakasan

    (@asakasan)

    Hi Ben thanks a lot for your help!

    For question n.4, i’d prefer the only site banner to stay always dark, and never to light up.

    I’m testing your theme locally, so I can’t provide a link for now.
    But I’ll be able to put it up in a couple of days, I think. I’ll provide a link as soon as i can.

    Thanks Ben.

    Thread Starter Asakasan

    (@asakasan)

    P.S.

    Here my link: asakaltrove . com

    I was wrong, primary menu is aligned on the right. How can I align it to the right?

    Thanks a lot.

    Theme Author Ben Sibley

    (@bensibley)

    Thanks for the info!

    The following CSS will keep the banner dark even when hovered:

    .site-title:hover {
      opacity: 0.6 !important;
    }

    I was wrong, primary menu is aligned on the right. How can I align it to the right?

    I’m sorry, I still don’t understand your goal for the menu. If you’d like it centered, this can be done with the following code:

    #menu-primary-items {
      text-align: center;
      margin-left: 0;
    }

    For question 3: to get the menu above the banner, you could copy the header.php file into your child theme and switch the order of the title-info and the menu. However, it may require some more CSS to keep the layout looking nice at mobile width.

    Thread Starter Asakasan

    (@asakasan)

    Thanks for the info!

    Thanks to you Ben!

    Now my site looks great!

    I like centered menu!

    And as for question 3… don’t mind, now I really like my site.

    Thanks, thanks a lot Ben.

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome, glad you’re happy with your site!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘About Primary Menu and site banner’ is closed to new replies.