Hi,
great template. I love it!!
I'd like to replace the logo with site title: : instead of the logo placed in the menu area, I'd like to have wordpress tittle e site
How can I do that?
Forgive my bad english.
Thank you!!
Hi,
great template. I love it!!
I'd like to replace the logo with site title: : instead of the logo placed in the menu area, I'd like to have wordpress tittle e site
How can I do that?
Forgive my bad english.
Thank you!!
Hi,
you can open up your header.php and find
echo avia_logo();
replace it with
echo "<div id=\"logo\">";
bloginfo('name');
echo "</div>";
after this you have to style it - in your Quick CSS or custom.css file you can ad something along the lines of this:
#logo {width:200px; height:90px; display:block;}
Of course you can change the styling to your liking.
It works. Great! Thank you very much!!!
Glad I could help :)
You must log in to post.