Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #61773

    Hello! I was so thrilled to find a theme that met my pretty reasonable needs for my blog, http://www.agoodcourage.com. There’s really only a couple issues I’m having. They should be easy fixes, but I’m a WP beginner and I don’t want to break it. If someone can tell me what to do, I can do it!

    So, a minor issue is that I’d like to be able to adjust the required/suggested size of my header image to make it a little longer on the Y axis. If that’s not doable, I’ll live.

    Second, I would love to get rid of the main header menu (the white bar at the top that follows as you scroll) altogether. Tried to remove it myself, had to log into my CPanel and reset the whole shebungo.

    Third, I’d like to use the lower menu (secondary menu) alone. So far that’s okay, but I lose the drop-down functionality when I do so. I see the theme preview here has drop-down functionality in its secondary menu. What am I missing there?

    Any help at all is greatly appreciated! I would love to stick to Adventurous but I need to be able to tweak those menus!

    #61797
    Sakin
    Keymaster

    @alyssagoodcourage:
    1. Your header image is already 1600px width, which is quite large to Website as we need to consider loading speed as well. So, what you want do it enlarge it for larger devices by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #header-featured-image img { width: 100%; }

    2. To add in drop down menu, you need to add in sub-menus to your secondary menu. For more information, check this post http://catchthemes.com/blog/custom-menus-wordpress-themes/

    3. Then to hide that fixed header and only show in mobile devices for menu, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 981px) {	
        #masthead { display: none; }
    }
    #masthead {
        background-color: transparent;
        border: none;
    }
    .mobile-menu-bar {
        color: #fff;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Header image size, Main header menu, secondary header menu, drop-downs’ is closed to new replies.