• On the website I’m working on, which is in its very initial stages, I’m having difficulty figuring out how to get rid of the white bar between the top slider and the upcoming events. See what I mean here:

    https://coachwerks.org/

    Can anyone help me with this? Any advice really appreciated!

    Thanks,

Viewing 6 replies - 1 through 6 (of 6 total)
  • Looks like this bit of CSS is causing it:

    body.no-header-sidebars.no-page-header .page-wrapper, body.no-header-sidebars.no-page-header .page-wrapper > .ajax-result {
    	padding-top: 60px;
    }

    So, at the bottom of your theme’s style.css, try adding:

    .page-wrapper {
      padding-top: 0px;
    }

    Thread Starter imonucker

    (@imonucker)

    Thanks for the quick response. Sorry for the n00b question.

    If I go into Appearance -> Editor -> and then click on Stylesheet (style.css), and then put in the text you suggested, it doesn’t get rid of the white bar. Any ideas on what I’m doing wrong?

    On the style.css page, all there is on it is:

    /*
    Theme Name: Church & Event
    Theme URI: https://church-event.vamtam.com
    Text Domain: church-event
    Description: WordPress Theme with powerful back-end framework.
    Author: Vamtam
    Author URI: https://vamtam.com
    Version: 18
    License: Envato
    License URI: https://themeforest.net/licenses/regular_extended
    Tags: blue, brown, green, pink, white, light, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fluid-layout, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, post-formats, theme-options, threaded-comments, translation-ready

    */

    Do I need to edit one of the .php files listed on the right hand side, or am I doing something completely wrong?

    Looks like you have some kind of cache system enabled as all the CSS is being served from https://coachwerks.org/wp-content/themes/church-event/cache/all.css?ver=1461159062 so you might need refresh this cache for any changes you make to become active.

    Personally, I would disable this caching until you get the website looking how you want.

    Don’t edit any PHP files.

    Since this looks like a premium theme of some kind, might need to get specific support here: https://church.support.vamtam.com/support/home

    Thread Starter imonucker

    (@imonucker)

    How do I refresh that cache?

    How do I disable it?

    And how do I access all.css – do I have to go through the server, or can I do it through the wordpress theme?

    Thread Starter imonucker

    (@imonucker)

    I managed to do it!

    I logged in via the server and edited the all.css file and it now works!

    I changed:

    body.no-header-sidebars.no-page-header .page-wrapper, body.no-header-sidebars.no-page-header .page-wrapper > .ajax-result {
    padding-top: 60px;
    }

    to

    body.no-header-sidebars.no-page-header .page-wrapper, body.no-header-sidebars.no-page-header .page-wrapper > .ajax-result {
    padding-top: 0px;
    }

    Thanks so much for your help!

    Hello, i’m having the exact same issue and I tried the above advices but they don’t apply to the website i’m working on. Can someone pls help out? the website: https://www.w-leaders.com
    i’m more or less new to coding so pls detail your answers. thank you in advance

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How do I get rid of horizontal white bar on wordpress site?’ is closed to new replies.