Separate Bow

Hi,

I’d like to add a separate bow from a post to another like the picture attached . Is it possibile ?

Hello there,

I hope you are doing well today.

You can insert the image of the bow into the next post as the image would be available in you image library.

Best Regards,
Support

How? Once i saved the image on the Wordpress library what shall I do ?

Hello there,

You would have to create a new post or open an existing post then add the image.

Here is a link showing the process:

Best Regards,
Support

But I’d like to add the bow to separate a post from another in he homepage, like it is marked in picture attached …

Hello there,

I hope you are doing well today.

We may be able to do this with CSS if not a third party developer would need to customize the theme for this.I am trying to view your site “https://glorianocera.com/” but the posts and content will not appear.

Best Regards,
Support

I know… I haven’t make them public yet… what have I to do with css? Which code do I need ?

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

.blog article.post .post-inner-content:after{
    display:block;
    content: "";
    width: 100%;
    height: 180px;
    background: url("http://www.amandavyne.com/wp-content/uploads/2013/08/Line-Separator.png") no-repeat;
    background-size: 100%;
}

Just change the image URL in the above code to whatever you want to set.