HighHopes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Olsen Light] Change color of link textto change the “Continue Reading” link colour, goto appearance, editor style.css and key word search for .more and in that section of code you’ll see color, a #with some numbers/letters.. that’s the colour. chose the colour you like, for example #bb3333 is a redish one..
Forum: Themes and Templates
In reply to: [Hey Cookie] [Theme: Hey Cookie] problems with feature images..i’m not running one of your themes.. but i did have the same issue, and probably solved in a similar manor.
from single.php, i just deleted the following text:
<?php if ( has_post_thumbnail()) the_post_thumbnail(''); ?>seems to work well. now feature image shows up in excerpt but not post.
hope this helps someone 🙂
Forum: Plugins
In reply to: [Pinterest Plugin] [Plugin: Pinterest Plugin] Does not work for meyep .. same for me. absolutely nothing. maybe because i am using a custom theme? or maybe because all my pictures are in NEXTgen galleries?
to stop nextgen plugin imagebrowser jumping to the top of page, see the solution here:
Forum: Plugins
In reply to: Next Gen image browser jump to top of page effectwow.. that actually worked! you are a code-wizard.
i don’t like how the imagebrowser defaults to jump to the top of the page because my gallery is not at the top of the page!
here are the full instructions:
1. in the nextgen plugin folder, open the file imagebrowser.php2. find this line:
<div class="ngg-imagebrowser" id="<?php echo $image->anchor ?>">and just above that line, add this text:
<a name="<?php echo $image->anchor ?>"/>3. find this line:
</a><a>previous_pid ?>" href="<?php echo $image->previous_image_link ?>">◄ <?php _e('Back', 'nggallery') ?></a>and replace it with this line:
<a>previous_pid ?>" href="<?php echo $image->previous_image_link ?>#<?php echo $image->anchor ?>">◄ <?php _e('Back', 'nggallery') ?></a>4. find this line:
<a>next_pid ?>" href="<?php echo $image->next_image_link ?>"><?php _e('Next', 'nggallery') ?> ►</a>and replace it with this line:
<a>next_pid ?>" href="<?php echo $image->next_image_link ?>#<?php echo $image->anchor ?>"> <?php _e('Next', 'nggallery') ?> ►</a>thx to webbrewers for the original work.