• Resolved kpita

    (@kpita)


    I am setting up a new blog/site at https://mdcaz.org. I am hoping to move the search bar above the large image and then have the message appear here a normal blog post would appear. Does that make sense? Any and all help is greatly appreciated. Thanks!

    Brent

Viewing 3 replies - 1 through 3 (of 3 total)
  • Beautiful image, by the way.

    Move your <form> block up inside the logo div thusly.

    <div id=”logo”>
    <h2>search words</h2>
    <form method=”get” id=”searchform” action=”https://mdcaz.org/”&gt;
    <div><input value=”” name=”s” id=”s” type=”text”>
    <input id=”searchsubmit” value=”Search” type=”submit”>
    </div>
    </form>
    </div>

    If you like, you can also change the position of the search block by modifying your style.css file. My example justifies it right, but it also screws up any <h2> header text you care to add. If you exclude header text, it will appear where most people look for a search form.

    #logo {
    width: 754px;
    height: 60px;
    margin: 0 auto;
    padding: 2px;
    text-align: right;
    }

    Hope this helps.

    Thread Starter kpita

    (@kpita)

    Oh terrific! Thank you so much! That’s almost perfect. Is it possible to move it down slightly, closer to the image?

    Thread Starter kpita

    (@kpita)

    I think I got it. Thanks again!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Is It Possible to Move and Edit My Search Bar?’ is closed to new replies.