Hi there,
i have another questions. quite an easy one for you but i cant do it.
i want a breaking line before my keywords are shown under my posts. i opened loop-index.php and found this code
{
echo '<span class="blog-tags minor-meta">';
the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
echo '</span></span>';
}
how to get a breaking line before this?
i tried many options of \n like
echo ' '\n;
but nothing worked, can you please help me?
Hey kultblendecom!
Please replace the code you posted with following one
` { echo '<br><span class="blog-tags minor-meta">'; the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> '); echo '</span></span>'; } `
Best regards,
Yigit
Hi!
It would be better to use CSS, try adding this to the Quick CSS:
span.blog-tags.minor-meta strong {
display: block;
}
Regards,
Josue
Hey Josue,
thanks its a lot better but not perfect. Let me please ask one more question.
this is how it looks now:
now i want to have a break between the box it is shown at the top of the screenshot and the orange word “Schlagworte”. It is to narrow and doesnt look good. 2 rows between seems perfect for me.
hope you can help me, i am just a noob with css, html and stuff.
Try adding this code to the Quick CSS:
footer.entry-footer {
clear: both;
}
Cheers!
Josue
Hell yeah, that looks perfect for me.
Thank you very much.
Cheers
kultblende.com
You are welcome, always glad to help :)
Regards,
Josue