Thank you, I only know css and html. I understand php if I look at it but I don’t know how to use if that makes sense.
Anyway, managed to to something
I disabled entry-title showing on video format posts and then created a new entry-title as entry-title2.
.format-video .entry-title {
display:none;
}
article .entry-title2 {
padding-left: 40px;
margin-top: -15px;
padding-bottom: 20px;
padding-right: 40px;
font-size: 21px;
font-weight: normal;
font-family: 'Ubuntu', sans-serif;
border-top: 0px solid white;
}
Then I put this code after the excerp
<?php if ( has_post_format( 'video' )) : ?>
<h1 class="entry-title2"> <a>" rel="bookmark"><?php the_title() ?></a></h1>
<?php endif ?>
It works well.
Thank you for your help and Happy Holidays 🙂
[MOD NOTE: please post code using the code button, or between backtics. As it is, the forum has eaten some of your delicious code and it is now incomplete]