• I want to move my search bar to whichever location i choose, it’s in the header and i want it flush with the very right, top corner of the tabs, (birthday onesies, funny onesies). if there’s css to override anything that’s stopping me from putting it on the right that’d be amazing.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hi John,
    Could you please post a link to your page?
    Cheers!
    – Maria Antonietta

    Thread Starter john249hill

    (@john249hill)

    Urbanskiesboutique.com

    also i need to reduce the header height. i’m new to wordpress and very lost. haha. I’m using woo commerce if that helps

    Hi John,
    If your theme includes a custom CSS editor, you can add the CSS rules there. In case this isn’t so, I recommend using this plugin to add your mods, so that your work doesn’t get overwritten on the next theme update: https://wordpress.org/plugins/simple-custom-css/

    In case you’re already using a child theme, don’t worry about the plugin – you can safely go ahead and use style.css in your child theme.

    Here are the CSS rules I’ve come up with:

    .header {
        height: 400px;
    }
    
    #navigation {
        position: relative;
        top: -110px;
    }
    
    #search-top {
        right: -30px;
        top: -380px;
    }
    
    .col-full {
        margin: -20px auto 0;
    }
    
    #footer {
        margin-top: 0;
    }

    This puts the search box at the very top right of the page, shortens the header height and adjusts the other elements accordingly. I’m not sure if this is what you wanted to achieve. In any case, I took a screenshot after I applied the CSS above using Firebug for Firefox – you can preview the result here:

    http://uploadpie.com/uybXJ

    I hope this helps 🙂

    Thread Starter john249hill

    (@john249hill)

    you are a lifesaver! this is literally exactly what i was hoping to achieve. Thank you so much for your time, hopefully i can return the favor to some people once i have any idea what i’m looking at when it comes to css. Thank you!

    That’s great news, you’re very welcome John 🙂

    Thread Starter john249hill

    (@john249hill)

    Ok even though you’ve been really helpful i did notice one drawback. When i add the css, the tabs for the onesies “birthday onesies, twin onesies, funny onesies” don’t show correctly when the cursor is over them, do you know what could cause this?

    Hi John,
    Could you please add the CSS I gave you to your site so I can have a good starting point to diagnose the problems. Most likely it’s a z-index problem, that is, it’s got to do with the stacking order according to which elements are displayed on the page.

    Also, could you add this CSS rule so that you’ll have the menu at the very top appear correctly:

    #top {
      margin-top: 20px;
    }

    Cheers 🙂

    Thread Starter john249hill

    (@john249hill)

    Oh of course just added the css. Thanks so much!

    Hi John,

    It looks like having shortened the header has caused this problem. However, it’s easily fixed by making the header overflow property visible, like so:

    .header {
      overflow: visible;
    }

    This should fix the problem 🙂

    Thread Starter john249hill

    (@john249hill)

    you’re really good at this! Thank you for ruling

    You’re welcome!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Moving Search Bar to wherever i need’ is closed to new replies.