Insert text paragraph on home page

  • Unknown's avatar

    Good afternoon,

    I was wondering if you could help me insert a paragraph of text on the home page. I am using the Collective theme and would need the paragraph to be in between the 4 pictures and the Updates blog below.

    I appreciate the help.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    If you want it in the grey area above “Updates” then add this and edit the content text between quote marks.

    .row.news-section:before {
        content: "This is some content";
        padding-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    If you want it in the white area below the images, then add this instead.

    .team-section::after {
        content: "This is some content";
        margin-left: auto !important;
        margin-right: auto !important;
        padding-bottom: 30px;
    }
  • Unknown's avatar

    Good morning,

    Thank you for your help. I inserted the code (option 2 above) into the css box but it doesn’t seem to work. The words “auto” are in red…I’m guessing they should not be for it to work?

  • Unknown's avatar

    Hi, some values in declarations will show as red. That is just the way the code is highlighted.

    I went to your customizer and inserted the second rule I have above and the text showed up, centered, below the team section above Updates.

    Can you try again?

  • Unknown's avatar

    It worked. Thank you.

  • Unknown's avatar
  • Unknown's avatar

    One more question came up regarding this code. How can I include paragraphs in the content? Also, is there a way to center the text?

    Thank you.

  • Unknown's avatar

    On the paragraph you have below the team section, add a “text-align: center; declaration to the CSS so it looks like this.

    .team-section::after {
        color: #000;
        content: "At NVMS we believe in the power of people coming together to communicate - to really listen and be heard, to identify issues, work on them together and find common ground. Whether you want to change how you interact with colleagues or neighbors, achieve a successful separation, resolve a potential lawsuit, improve your skills or become a professional mediator – through facilitation, coaching, mediation or training – we can help you make that happen.";
        font-family: Arimo;
        font-size: 25px;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 50px 250px 100px;
        text-align: center;
    }
  • Unknown's avatar

    Great. Is there a way to insert paragraph breaks in this content?

  • Unknown's avatar

    No not when adding text in this way with CSS there isn’t.

  • The topic ‘Insert text paragraph on home page’ is closed to new replies.