Tagged: logo
Hello,
First of all, I love this theme!! A couple of quesitons –
I’m trying to add a Printer Friendly link (using this plugin http://wordpress.org/plugins/printfriendly/) to my single posts pages right below blog title, but I do not know which template needs to be edited for that. For example, on this page: http://www.fmitk.com/2013/10/asian-pear-and-lemongrass-custard-crostata/ I’d like the “Printer Friendly” link to show to the right of the author name (in this case, “holly”). Could you please point me in the right direction?
Also, my logo is formatted incorrectly on the mobile version of my site with the Slide Out menu enabled. I tried adding this code from other posts in the forum I came across:
@media only screen and (max-width: 480px) { .responsive .logo img { width: 250px!important; } }
But that doesn’t fix the problem.
Thank you!!
Hi itsholly!
Edit the plugin Settings > Display button on: > select “Add direct to template”. Choose Right Align on Button positioning. Edit inludes > loop-index.php, find this code:
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
echo '<span class="vcard author"><span class="fn">';
the_author_posts_link();
Below add this code:
if(function_exists('pf_show_link')){echo pf_show_link();}
Cheers!
Ismael