• I’m using a child theme of Ink, a Themeforest theme.

    My website is https://www.danvineberg.com

    I like the look and feel of my home page, but I don’t believe it provides enough of a map around my site. It gets straight to the content before I can make an introduction.

    So far I’ve been able find a way to add text content on top of the post through custom css that looks like this:

    body.blog main::before {
    content: ““I’m not sure what I’ll do, but— well, I want to go places and see people.” – F Scott Fitzgerald”;
    border-bottom: 1px solid #000;
    display: block;
    margin-bottom: 40px;
    margin-right: 40%;
    padding-bottom: 25px;
    font-size: 21px;
    font-family: “Droid Serif”;
    font-style: italic;
    text-align: center;

    }

    However I can’t add html formatting to the “content” within the css as needed. I would like to add links and possibly images to the top of my home page, and this appears to be beyond the ability of my current css.

    Can anyone find a solution to editing the top of my home page as needed?

    This is my first post on the forum. Thank you in advance for any help!

Viewing 1 replies (of 1 total)
  • You won’t be able to add content just by using CSS. You’ll need to make a copy of the front-page or index.php from the parent and add it to your child theme. In there, you can either add a div and hard code the content you want, or set up widget??

Viewing 1 replies (of 1 total)
  • The topic ‘How to add content to my home page, a static page displaying recent posts?’ is closed to new replies.