How can I add a row in a blog article page? 
Autore: Tonnie S.
Visite 107,
Followers 0,
Condiviso 0
In my website i have page with a blog widget. It looks like the first attachment. When i click on the button <Alles lezen> then the page with the blog article is shown. On that page, I'd also like to see the red row "Verhalen geschreven door onze leden" How do I do this?
Postato il

Autore
There was a similar question a few months ago, but I don't remember what solution was found.
KolAsim may have had a solution, but I can't say for sure.
(It < En) ... without a LINK it cannot be evaluated...
... there are dozens of different ways depending on the page configuration and layout...
... however, this simple code for the BLOG page might work:
<style>
#imContent{margin-top:40px;}
#imContent:after {content:"Bla bla bla"; position:absolute;width:100%;top:-40px; height:35px;background-color:red;text-align:center;font-size:24px;padding-top:5px;color:yellow}
</style>
.
ciao
.
Autore
This code works, thank you. The code in my website is now:
<style>
#imContent{margin-top:58px;}
#imContent:after {content:"Blog: De oude doos"; position:absolute;width:100%;top:-42px; height:60px;background-color:#f21b06;text-align:center;font-size:26px;font-style: italic;padding-top:17px;color:white}
</style>
There is one problem. All blogs are getting a row with the text "Blog: De oude doos". That's not wat i want. For every blog i want an extra row with te text "Blog: <blogname>". Is there a solution for? With a variable or so?
My website is https://tonnie-stevens.websitex5.me/
...if you only need the code for the BLOG, you need to remove the code you're using now from where you put it...
...to apply the code only to the BLOG, in Step 3 you need to select the Bl.og Special Page, at the bottom of the page list, open the Properties section, and in the Code section, in the option before the closing of the /HEAD tag, paste your current code...
.
ciao
.
@KolAsim: If I understand correctly, each blog article should have a different title in the red stripe.
Autore
Yes, that's what i want.
It seems that the title and cover image for the blog articles were set to display: none and now the title should appear in the red stripe again.
Maybe KolAsim can trick it with CSS and Javascript to achieve the desired result.