Viewing 5 replies - 1 through 5 (of 5 total)
  • in style.css, try to add something like:

    #branding { min-height: 170px; }

    Thread Starter DAZDOREY

    (@dazdorey)

    Thank you alchymyth the Sweeper:

    Perfect! Placed exactly where I want it to be!….
    But it is very thick… how can I keep the exact placement from the top but make the bar thinner by half?

    Thanks soooo much!
    M

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    in style.css, try to add something like:

    div.menu {
     min-height: 85px;
    }

    unfortunately, you mashed the suggested code into the middle of an existing style:

    /* =Structure
    -------------------------------------------------------------- */
    /* The main theme structure */
    #access .menu-header,
    div.menu,
    #colophon,
    #branding { min-height: 170px; }
    #main,
    #wrapper {
    	margin: 0 auto;
    	width: 940px;
            height="825px;
    }

    repair that mess, so the same section looks like:

    /* =Structure
    -------------------------------------------------------------- */
    /* The main theme structure */
    #access .menu-header,
    div.menu,
    #colophon,
    #branding,
    #main,
    #wrapper {
    	margin: 0 auto;
    	width: 940px;
    }
    #branding { min-height: 170px; }
    Thread Starter DAZDOREY

    (@dazdorey)

    Dear alchymyth The Sweeper,

    Again…. amazing! I thank you so very much!

    Daz

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Moving my Menu bar down further in Twenty Ten’ is closed to new replies.