Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #61478
    Christopher
    Participant

    We had been using the Catch Box free version and just upgraded to Pro today to fix a Woo-commerce issue. But now I can’t figure out how to get the search box back to its original location. I don’t remember if I moved it to the top of the header or if that was default location, but that is where we like it as it takes up less room than under it.

    See attached image for more details.

    Any assistance is greatly appreciated!

    http://i62.tinypic.com/2wrosh1.png

    #61503
    Sakin
    Keymaster

    @Christopher: If you had posted in your site URL then I could give you exact css. But on the basis of your screenshot, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-content {
        position: relative;
    }
    #sidebar-header-right { 
    	position: absolute;
    	top: 2.8em;
    	right: 0;
    	text-align: right;
    }
    @media screen and (max-width: 767px) {	
    	#sidebar-header-right {
    		margin-top: 0;
    		padding-top: 15px;
    		position: static;
    		text-align: center;
    		width: 100%;
    	}	
    }
    #61590
    Christopher
    Participant

    Sakin,

    Sorry about not providing the full url path. it is http://www.pcyfl.org, but I was able to take what you provided and fixed the issue.

    Thanks!!

    #61591
    Christopher
    Participant

    oh, I did have one other quick question. How do I sent the pulldown menus?

    http://i61.tinypic.com/2q9e34p.png

    my website is http://www.pcyfl.org. I am assuming it is something simple just overlooking it I think.

    Thanks!

    #61598
    Christopher
    Participant

    correction.. center the pulldown menus, not sent.

    #61614
    Sakin
    Keymaster

    @Christopher: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #branding #access {
        text-align: center;
    }
    #branding ul.menu li {
        display: inline-block;
        float: none;
    }
    #61622
    Christopher
    Participant

    WOW.. thank you so much on both issues. Worked great!!

    #61647
    Sakin
    Keymaster

    @Christopher: Thanks for your appreciation.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Search box location in Pro’ is closed to new replies.