By Adrian Gorman on Friday, 20 November 2015
Posted in General Issues
Replies 3
Likes 0
Views 674
Votes 0
Hi,

I notice that when an email is sent to a subscriber to notify of a new posting, the content is 'centre justified' Is there a way in which I can make the text left justified.
Attached is an example screen grab.

Thanks
I am using the latest version of Easyblog
Hey Adrian,

You have to modify on this new post email notification file -> JoomlaFolder\components\com_easyblog\themes\wireframe\emails\html\post.new.php

For example :

// LINE 40

<div style="padding: 40px 30px;">

// Replace into
<div style="padding: 40px 30px;text-align: left !important;">

·
Friday, 20 November 2015 22:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,

Thank you for the reply, but I am not sure what to do - I have accessed the file you refer to but cannot find the line you refer to (not sure what to do if I found it).

However, the file does refer to alignment 'Centre' on 3 occasions. - should I change this to 'Left' ?
Attached is a capture of the code.

Thanks again

Adrian
·
Saturday, 21 November 2015 22:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Adrian,

You can find the code that my colleague shown above at around line 40:
<div style="padding: 40px 30px">
<?php echo $blogIntro; ?>
</div>


And replace it with

<div style="padding: 40px 30px;text-align: left !important;">
<?php echo $blogIntro; ?>
</div>


Hope these help.
·
Monday, 23 November 2015 17:06
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post