1. How do I remove the search bar from the top menu in Brightbox?
2. How do I remove the "kriesi" credit from the footer?
3. How can I change my social network links to open in a new tab or window?
Thanks!
-chad
1. How do I remove the search bar from the top menu in Brightbox?
2. How do I remove the "kriesi" credit from the footer?
3. How can I change my social network links to open in a new tab or window?
Thanks!
-chad
Hello
1.) To remove the searchbar, put this on your custom.css
#searchform {
display: none;
}
2.) To edit the footer, open footer.php and find this code.
<span class='copyright'>© <?php _e('Copyright','avia_framework'); ?> - <a href='<?php echo home_url('/'); ?>'><?php echo get_bloginfo('name');?></a> - <a href='http://www.kriesi.at'>Wordpress Theme by Kriesi.at</a></span>
3.) To have the social network links open in a new tab, you need to open header.php and find this code
<li class='rss'><a href="<?php avia_option('feedburner',get_bloginfo('rss2_url')); ?>">RSS</a></li>
<?php
if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."'>Twitter</a></li>";
if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."'>Twitter</a></li>";
Replace it with
<li class='rss'><a href="<?php avia_option('feedburner',get_bloginfo('rss2_url')); ?>" target="_blank">RSS</a></li>
<?php
if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."' target='_blank'>Twitter</a></li>";
if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."' target='_blank'>Twitter</a></li>";
4. ) In case you want to move the position of the social links, just add this on your custom.css
.social_bookmarks {
right: 20px;
}
Regards,
Ismael
Thank you so much!
Hi smashley,
Glad that I could help. :)
Cheers,
Ismael
You must log in to post.