PaulWeber
Member
Posted 6 years ago #
Everything is installed and working properly but I need to modify my tagline. More specifically I am looking to insert line breaks as I would like it to be a multi-line tagline.
I've tried just about everything (including adding text to the<?php bloginfo('description'); ?> tag) barring a brute force rewrite within the database (beyond my skills).
Still - it ain't happening.
Any workaround?
Thx.
Remove that bit of php.
It's probably something like
<h2><?php bloginfo('description'); ?></h2>
so why not
<h2>This is my tag line<br />and here is a second line</h2>
That doable?
PaulWeber
Member
Posted 6 years ago #
:-)
Right. I guess I just wanted to do something hard-core enough to justify my place on Earth :-)
Sometimes going back to the basics IS the best solution...
Thank you.