Hi! I would like to use a bigger logo in the header area than what is currently possible. How do I make that change through a piece of custom CSS? (my site: http://brandsamba.se)
Also, how do I remove the search bar top right?
Thanks!
Hi! I would like to use a bigger logo in the header area than what is currently possible. How do I make that change through a piece of custom CSS? (my site: http://brandsamba.se)
Also, how do I remove the search bar top right?
Thanks!
Hi,
1) You just need to upload the new (bigger) logo on the admin page (Themes Options > General > Logo). The logo container will wrap around the new logo.
2) Open up header.php and remove following code:
get_search_form();Oh, so it was that easy! Thanks. :-)
Another thing I wanted to figure out...how do I edit the copyright line bottom left. I wish to just have my name, and remove "Wordpress Premium Theme by Kriesi".
Hi,
Just edit footer.php and find this code
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://www.kriesi.at'>Wordpress Premium Theme by Kriesi</a>");
You can change it to
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://www.brandsamba.se'>Brand Samba</a>");
Regards,
Ismael
Hi,
I used this tread to locate the line that displays your name and totally delete it from my footer. So now I'm left with Copyright-OPSVENUE which points to my URL. Is there a way to append (.Inc) to the end of my company name?
In other words I would like it to look like this
Copyright-OPSVENUE.Inc
(and it should still point to my URL)
Thanks for your help
In footer.php replace:
<span class='copyright'>© <?php _e('Copyright','avia_framework'); ?> - <a href='<?php echo home_url('/'); ?>'><?php echo get_bloginfo('name');?></a><?php echo $kriesi_at_backlink; ?></span>
with:
<span class='copyright'>© <?php _e('Copyright','avia_framework'); ?> - <a href='<?php echo home_url('/'); ?>'><?php echo get_bloginfo('name');?>.Inc</a></span>Nevermind. I figure that flagship was getting that info from the general settings in wordpress so I changed there and it worked right away..
Thanks anyway though
Glad that you were able to figure it out.
Good luck!
Nick
This topic has been closed to new replies.