By Shane on Monday, 12 January 2015
Posted in General Issues
Replies 3
Likes 0
Views 427
Votes 0
Hi,

My client is revamping her site, mostly changing buttons etc. and I have been searching for a while but cant work out where I would add the image attached to remove the 'Continue Reading' text, I have also attached a screen shot of where she wants it to replace the text.

Link to site is http://www.jodiecooper.com.au

Any help would be greatly appreciated!

Cheers,
Shane
Hi Shane,

Can you please go to this file: ...\modules\mod_latestblogs\tmpl\default_item.php Line: 74.
Please find this code:

<?php if( $params->get( 'showreadmore' , true ) ){ ?>
<div class="mod-post-more">
<!-- Start here. Please put your image src -->
<a href="<?php echo $url; ?>"><img src=""/></a>
<!-- Ends here -->
</div>
<?php } ?>


If you have anymore question, please don't hesitate to ask us.
Hope this will help.
Thanks.
·
Monday, 12 January 2015 13:51
·
0 Likes
·
0 Votes
·
0 Comments
·
That is awesome, thanks heaps!!

I have added my src in and its working but I am now wondering where the file is that I can adjust so I can get the image to float right?

I have looked with firebug but cant seem to work it out, I have just added some extra canvas size to solve the issue temporarily.

Thanks again for your help
·
Tuesday, 13 January 2015 11:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Shane,

You can just add the style="text-align:right" to your div like this:


<?php if( $params->get( 'showreadmore' , true ) ){ ?>
<div style="text-align:right;" class="mod-post-more">
<!-- Start here. Please put your image src -->
<a href="/<?php echo $url; ?>"><img src="/"/></a>
<!-- Ends here -->
</div>
<?php } ?>


Hope this helps.
·
Tuesday, 13 January 2015 12:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post