Site logo

[Resolved] Text spacing

Home Forums Support [Resolved] Text spacing

Home Forums Support Text spacing

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #138009
    Ted van Vliet

    Hi Tom,

    I have a little problem with the spacing of text. I downloaded a third party plugin but that doesn’t work properly on mobile devices:

    http://www.walterdelange.nl/wdl-site/collectie-herfst-winter/

    Is there a way in GP that i van give spacing on all other pages than the homepage, so the text doesn’t start at “0”? Text should also be responsive on all screen.

    Thanx in advance.

    Ted

    #138048
    Tom
    Lead Developer
    Lead Developer

    Hi Ted,

    Give something like this a try:

    .inside-article {
          padding: 40px;
    }
    
    .home .inside-article {
          padding: 0;
    }
    #138051
    Ted van Vliet

    HITOM,

    Tried it…. but no result.

    This is my Custom CSS so far:

    .category .page-header {
    display: none;
    }

    .navigation-search {
    width: 40%;
    }

    .one-container .inside-article,
    .page .hentry {
    padding-bottom: 0;
    margin-bottom: 0;
    }

    .inside-article {
    padding: 40px;
    }

    .home .inside-article {
    padding: 0;
    }

    Seems this CSS is being ‘overruled’ somewhere else by the theme or (GP) plugins

    #138052
    Ted van Vliet

    HITOM,

    Tried it…. but no result.

    This is my Custom CSS so far:

    .category .page-header {
    display: none;
    }

    .navigation-search {
    width: 40%;
    }

    .one-container .inside-article,
    .page .hentry {
    padding-bottom: 0;
    margin-bottom: 0;
    }

    .inside-article {
    padding: 40px;
    }

    .home .inside-article {
    padding: 0;
    }

    Seems this CSS is being ‘overruled’ somewhere else by the theme or (GP) plugins

    #138135
    Tom
    Lead Developer
    Lead Developer

    How are you adding the CSS? I can’t seem to find it on your site.

    #138140
    Ted van Vliet

    Hi,

    I put the code in the custom CSS

    Ted

    #138146
    Ted van Vliet

    You were right it was away while testing other options.

    I’ve put it back now.

    Ted

    #138147
    Tom
    Lead Developer
    Lead Developer

    Give this a shot:

    .one-container .inside-article {
          padding: 40px;
    }
    
    .home.one-container .inside-article {
          padding: 0;
    }
    #138148
    Ted van Vliet

    That does it!

    Thanks and goodnight!

    Ted

    #138149
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.