Viewing 9 replies - 1 through 9 (of 9 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello Stoent,

    Go to themes customize -> Additional css. here you can apply css for any changes. another solution can be go to your theme folder and apply css in style.css file

    Hope this will helps you.

    Thanks.

    Thread Starter stoent

    (@stoent)

    Yea, Iam a newbie. I use Simple CSS but I can’t find which code I need to change.

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello stoent,

    You don’t nedd to modify any css code just Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer

    .wprss-feed-meta {
        float: left;
    }
    li.feed-item {
        width: 1000px;
    }

    Hope this will helps you.

    Thanks.

    Hi there,

    With the code @addweb-solution-pvt-ltd provided above you will notice the title and the link are right next to each other.

    If you want to add a bit of space between them, just add this extra below that code:

    li.feed-item div.wprss-feed-meta:after {
      content: "  ";
      white-space: pre;
    }
    Thread Starter stoent

    (@stoent)

    Hello
    I use Plugin Simple CSS, and when I test your code it dosen’t work ??

    Thread Starter stoent

    (@stoent)

    Here is a picture that show what I want. If you don’t understand me. Iam not so good in English (especially when it come to Code Language) so maybe u don’t understand exactly what I want to do. ?? Cheers.

    Thank you for the screen shot. So you want it inline with the page title and the horizontal lines in the header and footer? This should work for that:

    .page article.page {
      padding-left: 0px;
    }

    That code will remove the space to the left on all pages on the site.

    To remove it on only that one page, use:

    .page article.post-12 {
      padding-left: 0px;
    }
    • This reply was modified 6 years, 3 months ago by KokkieH.

    I use Plugin Simple CSS

    I would recommend you just add that directly to the Additional CSS section in the Customizer – you don’t need to use an additional plugin for adding CSS code to your site.

    Thread Starter stoent

    (@stoent)

    Hello!
    I used this code:

    .entry-content ul, .entry-content ol {
    margin: 0 0 0px 0px;
    }

    Thx for all help!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Change margin in pages’ is closed to new replies.