Site logo

Archived topic

Text spacing

9 replies · Started by Ted van Vliet on September 19, 2015

Viewing posts 1–10 of 10

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

Hi Ted,

Give something like this a try:

.inside-article {
      padding: 40px;
}

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

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

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

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

Hi,

I put the code in the custom CSS

Ted

You were right it was away while testing other options.

I've put it back now.

Ted

Give this a shot:

.one-container .inside-article {
      padding: 40px;
}

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

That does it!

Thanks and goodnight!

Ted

You're welcome :)

This archived topic is closed to new replies.