Skip to content
Catch Themes Logo

Catch Themes

Premium Responsive WordPress Themes with advanced functionality and awesome support. Simple, Clean and Lightweight Responsive WordPress Themes

  • Home
  • FSE Pro Plugin
  • Themes
  • Features
  • Hosting
  • Support
  • Blog
  • My Account

Padding around logo and search bar removal

Support Forum Catch Everest

Tagged: logo, padding, remove, search, space

  • This topic has 29 replies, 11 voices, and was last updated 11 years, 4 months ago by vixtor.
Viewing 20 posts - 1 through 20 (of 30 total)
1 2 →
  • Author
    Posts
  • March 11, 2013 at 12:29 am #4932
    VinciDesign.nl
    Member

    Hello,

    I use the theme Catch Everest, I think its a great theme!

    But I would like to remove the search bar in the top right corner and to reduce the white space above and below the logo. (See my website http://vincidesign.nl)

    Could you give me a custom css code to do this please? I tried another searchbar remove codes but they did not work.

    March 11, 2013 at 1:39 am #4936
    VinciDesign.nl
    Member

    EDIT: and can use the slider for pages instead of posts?

    March 11, 2013 at 3:12 am #4938
    VinciDesign.nl
    Member

    Some other questions.

    I put a post with a featured image in the slider and it works fine, it does show up on my homepage etc.

    But when I click the image on the home page, it leads me to an error page. This is because it adds a /” after the link. The continue reading link is working fine though.

    And for the other questions, please see this image.

    http://i.imgur.com/kKUHe9r.png

    – How can I remove the date and the posted by text and on the bottom the posted in [category] text?

    – How can I expand the featured image to full size

    Thanks in advance!

    March 11, 2013 at 10:03 am #4954
    Sakin
    Keymaster

    @VinciDesign.nl: WoW so many question at a time. I will try to cover all.

    1. I would like to remove the search bar in the top right corner and to reduce the white space above and below the logo. (See my website http://vincidesign.nl)
    — To remove the white space above and below the logo add the following css in “Custom CSS” box in Theme Options panel.
    #site-logo, hgroup.with-logo { padding-top: 0; }
    — To remove the search box at the header right. Just go to “Appearance => Theme Options => Header Right Section” from your WordPress Dashboard and check on “Disable Header Right Section” and save changes.

    2. The slider doesn’t accept page at this movement we will try to add in future updates.

    3. There is problem with the slider image link. We have already fixed it in new version and but the WordPress Theme Review Team need to make the new version live so that you all can fix it. But there is temporary patch if you need then use this http://catchthemes.com/support-forum/topic/featured-slider-image-leading-to-error-page/

    4. How can I remove the date and the posted by text and on the bottom the posted in [category] text?
    — You can just hide it with the css. Just add in “Custom CSS” box in your Theme Options panel
    .entry-meta { display: none; }

    5. How can I expand the featured image to full size
    Just add the larger image as the Featured image in the post. See the Theme Instruction for Image Sizes. http://catchthemes.com/theme-instructions/catch-everest/

    March 13, 2013 at 1:11 am #5071
    willko
    Participant

    Hi Sakin,

    Just following up on this,…

    The “remove search bar fix” also removes the social links buttons,.. any way to JUST remove search bar and leave the social links in place..?

    and,.. (pushing my luck here) is there a way to replace the search bar with a small text entry?  I’d like to put the business tel number there…?

    Thanks!!

     

     

    March 13, 2013 at 1:20 am #5072
    Sakin
    Keymaster

    @willko: Oh ok then just add the following css in “Custom CSS” box in your Theme Options panel in your WordPress Dashboard.
    #header-right .widget_search { display: none; }

    March 13, 2013 at 1:32 am #5073
    willko
    Participant

    Bingo!   Thanks for super fast reply!!

    March 14, 2013 at 1:55 am #5137
    [email protected]
    Member

    Hi! Thanks foir the tip. I got the Search-box away just clicking “Disable Header Right Section”

    But it also disabled the Facebook/Twitter/etc logos/links.

    Is there a way to remove the Search-bar without removing those social media etc logos/links, that also are located in the header right section?

    Best,

    Timo

    March 14, 2013 at 11:48 am #5151
    Sakin
    Keymaster

    @[email protected]: I need your site URL and then will send you the css code. Did you try adding in the following css in “Custom CSS” box in your Theme Options panel.
    #header-right .widget_search { display: none; }

    May 13, 2013 at 3:05 am #8916
    BrianW
    Member

    Hi, I’m also trying to remove the white space around the logo — I want to use a full width header image on the site (www.awesomeenterprise.com)

    I tried using this code:
    #site-logo, hgroup.with-logo { padding-top: 0; }

    But it only removes the padding at the top. How can I get a full-width header image with no white at all?

    May 13, 2013 at 3:17 am #8917
    BrianW
    Member

    Oop! Think I solved it — apologies for the dumb question above. To remove white padding on all sides I just did this:

    #hgroup-wrap { padding-top: 0; }
    #hgroup-wrap { padding-bottom: 0px; }
    #hgroup-wrap { padding-left: 0px; }
    #hgroup-wrap { padding-right: 0px; }
    May 13, 2013 at 9:53 am #8924
    Sakin
    Keymaster

    @BrianW: Yes it’s cool. But you can shorten the css by just
    #hgroup-wrap { padding: 0; }

    May 22, 2013 at 8:14 am #9279
    heathershelby
    Member

    Hi there,
    I am also trying to edit the padding as well as alignment of the logo and text in the header.
    http://karengarlanger.wpengine.com/

    I would like the logo and site title to be centered in the header and also much less space above and below the logo. I tried to use the code you provided already but it didn’t work for me.

    I am using the Catch Everest theme. Thank you much!

    May 22, 2013 at 3:22 pm #9300
    Sakin
    Keymaster

    @heathershelby: I see that you have already center the logo but site Tagline is on left. You can center the tagline as well by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #hgroup.with-logo { text-align: center; }

    For adjusting the spaces above and below header. You can adjust the padding as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1060px) {
    /* Padding Above Logo */
    #site-logo {
        padding-top: 50px;
    }
    /* Padding Above Site Title */
    #hgroup {
        padding-top: 50px;
    }
    /* Padding Below Site Description */
    #hgroup-wrap {
        padding-bottom: 50px;
    }
    }
    May 27, 2013 at 8:15 am #9491
    joecool3216
    Participant

    Hi Sakin. Thanks for all your helpful coding tips. I have a question about the header in a responsive mode (iPhone). On a full site, there is no padding around the header because I entered the custom CSS code…however…when viewing on an iPhone, the padding returns. I tried to find the CSS code in the style.css but not sure which one to change. I would appreciate any help. Thanks again.

    May 27, 2013 at 9:36 am #9497
    Sakin
    Keymaster

    @joecool3216: If you want to remove adjust it in all devices then just put the css outside@media screen and (min-width: 1060px) { }. This code only apply css that are screensize of 1060px width minimum.

    So, it can be as below:

    /* Padding Above Logo */
    #site-logo {
        padding-top: 50px;
    }
    /* Padding Above Site Title */
    #hgroup {
        padding-top: 50px;
    }
    /* Padding Below Site Description */
    #hgroup-wrap {
        padding-bottom: 50px;
    }
    October 5, 2013 at 6:38 am #15555
    macaguerra
    Member

    hello, how I can change the color of the menu? What I can use CSS?

    October 5, 2013 at 2:53 pm #15561
    Sakin
    Keymaster

    @macaguerra: To change the color of menu, you can simple use any of our Pro or Premium themes, which has in-build color option in Theme Options panel. If you are using Free themes then you need to upgrade to pro version.

    October 21, 2013 at 9:11 pm #16160
    peterson89
    Member

    Hey,

    I’ve some problems with this white line above logo. I’ve used all of yours codes but still nothing… I dont have idea what I should change:

    I would like to delete white line above photo here:

    http://www.sket.com.pl

    thanks for reply, have a nice day!

    October 22, 2013 at 12:14 am #16175
    Sakin
    Keymaster

    @peterson89: Add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-content { display: none; }

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 30 total)
1 2 →
  • The topic ‘Padding around logo and search bar removal’ is closed to new replies.

Incompatible Archive Error in WordPress 6.4.3

How to fix the Incompatible Archive Error?

Support Forum Instructions

Use the search box below to search for your answer and also check out theme instructions at Theme Instructions before posting question here.

When you post in your question, please don't forget to post in your site URL. If you have issue in posting question here in forum then check out screencast from our YouTube channel.

Notice: Support Forum Now Requires User Moderation to Avoid Spammers

Search Forums

Popular Themes

BizBoost Pro

Buy Now

Bold Photography Pro

Buy Now

Audioman Pro

Buy Now

Catch Fullscreen Pro

Buy Now

Fotografie Pro

Buy Now

Catch Responsive Pro

Buy Now
Hire a Customizer

Recent Topics

  • Why Air Duct Cleaning in Dubai Is More Important Than You Think (Awaiting moderation)
  • Why Air Duct Cleaning in Dubai Is More Important Than You Think (Awaiting moderation)
  • iPhone Hamburger Menu and Word Menu
  • Header height
  • Thumbnail Size – Events and Category List
  • Thumbnail Size – Events and Category List
  • Hide page title in the middle of header
  • Very urgent problem with slide module
  • Cath Responsivre pro
  • Bying the latest version of Catch Evolution Pro
  • Text issue
  • Primary menu appearance
  • How to edit theme with elementor
  • Event Calendar Integration
  • FSE Pro Install error
  • my-music-band.3.7.9 pro not pro version
  • activation fse-pro limited
  • Homepage image not shown completely
  • PHP update
  • Catch Gallery: Tiled mosaic galleries are not sizing properly
  • Error on FSE PRO
  • Invalid License Key
  • Theme not showing Main Sidebar in Widgets section
  • unable to update from 2.0.2 to 2.1
  • Featured Image
  • URGENT: issues after FSE update!!!
  • Restore deleted navigation
  • unofficial homepage/header media link
  • Double Widgets
  • every page like the front page. Possible?

Popular Tags

background blog catch box catch everest category child theme Color comments css Excerpt featured content featured image featured slider font footer header header image homepage Home Page image images layout logo menu mobile navigation padding page portfolio post posts responsive search sidebar Simple Catch site title slider theme title update widget widgets width woocommerce wordpress

Featured Posts

  • Best Free WordPress Block Themes for Full Site Editing for 2024
  • 40+ Best Free Business WordPress Themes for 2024
  • 30+ Best Free WordPress Themes for 2024
  • 25+ Best Free Music WordPress Themes for 2024
  • Our Top 10+ Free and Premium Photography WordPress Themes Collection 2024
  • Our Free and Premium Music WordPress Themes Collection

Donate Now

Click on the Donate button below to Support Free Themes, Free Plugins, and Free Support. All donations are used for the development and improvement of free themes, plugins, and support. Thanks for your contribution.
  • Home
  • About Us
  • Contact Us
  • Join Our Team
  • Terms & Conditions
  • Privacy Policy
  • Facebook
  • Twitter
  • Linkedin
  • Scroll Up
  • Pinterest
  • Youtube
  • Instagram
© 2012 - 2025 Catch Themes: Premium WordPress Themes. All rights reserved.
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie settingsGot it!
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Non-necessary
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
SAVE & ACCEPT