Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #275624

    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?

    #275710

    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

    #275714

    Hi there,

    doesn´t work, same look as before.

    Link to the page:
    click

    #275724

    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

    #275759

    Hey Josue,

    thanks its a lot better but not perfect. Let me please ask one more question.

    this is how it looks now:
    http://kultblende.com/wp-content/uploads/2014/06/bild3.png

    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.

    • This reply was modified 9 years, 9 months ago by kultblendecom.
    #275788

    Try adding this code to the Quick CSS:

    footer.entry-footer {
        clear: both;
    }

    Cheers! 
    Josue

    #275789

    Hell yeah, that looks perfect for me.

    Thank you very much.

    Cheers
    kultblende.com

    #275804

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Line Breaking before Keywords’ is closed to new replies.