• My site is https://www.gadgetfit.net

    I foolishly updated the Twenty Twelve theme and lost some customizations I’d paid for… one of which was a search bar in the top right corner of the screen, in line with the menu buttons up top.

    I know a search field can be put in a widget, but I don’t want one there. I know it’s possible, I just don’t know how.

    If anyone could tell me either where to dig around, or what to post in the custom CSS portion of Jetpack, I’d be indebted.

    Thanks!

Viewing 15 replies - 46 through 60 (of 72 total)
  • Thread Starter JoshuaMunoz

    (@joshuamunoz)

    Changed. Sigh. This is a new project I’m trying to start up, but I just wish the search bar would work. ??

    Me too :(.

    See what happens if you take this out of your CSS file:

    header form {
        left: 10px;
        position: relative;
    }

    Thread Starter JoshuaMunoz

    (@joshuamunoz)

    Removed.

    How about this (out)?

    header nav, div#main {
        position: relative !important;
        z-index: 5 !important;
    }

    Thread Starter JoshuaMunoz

    (@joshuamunoz)

    Removed that as well!

    Okay, I think I found something – try this:

    nav {
       clear: none;
    }

    If that doesn’t work, try:

    nav {
       display: inline-block;
    }

    Thread Starter JoshuaMunoz

    (@joshuamunoz)

    Remove them or add them to style.css?

    Add – try the first one first, then take it out if it doesn’t work and try the second.

    Thread Starter JoshuaMunoz

    (@joshuamunoz)

    nav {
       display: inline-block;
    }

    Worked! It just removed the lines surrounding the menu, except for where there are words.

    Strange?

    YAY! At least it worked to move the darn thing – LOL!

    Not really strange – I figured it would do that – since “inline-block” changes that to a less than full-width element. Do you want those lines – I can see if we can get them back or get rid of them.

    Thread Starter JoshuaMunoz

    (@joshuamunoz)

    YAY indeed!

    If at all possible the lines would be good. They give a clear cutoff for the header image, plus, I’m pretty visually OCD, so, it’ll be good for me. ??

    It’s getting late here so I have to get off soon – but I’ll look at fixing that in the morning – sorry I can’t do it now.

    Hey, kept thinking about this ?? … so one more try for tonight:

    Take out everything below this:

    .entry-content a:hover {
    	color:#2d8a71 !important;
    }

    And add this there:

    @media screen and (min-width: 600px) {
    
      .main-navigation {
          margin-top: -40px;
       }
    
       nav {
          display: block;
          float: left;
          width: 100%;
       }
    
       #nav-search {
          float:right;
          margin-top:0px;
       }
    }

    Thread Starter JoshuaMunoz

    (@joshuamunoz)

    IT WORKED! YOU ROCK! ??

    Now… How can I change my footer? ??

    LOL – awesome!! Can you start a new thread – since that’s a different topic – keeps the forums better organized and helps other people find previous topics.

Viewing 15 replies - 46 through 60 (of 72 total)
  • The topic ‘Theme: Twenty Twelve, add search bar’ is closed to new replies.