By renejdm on Thursday, 13 August 2015
Posted in General Issues
Replies 3
Likes 0
Views 680
Votes 0
Hi,

In EasyBlog 5.0.16 the color of the buttons on the landing page were red. See image. In the newest version (5.0.20), the color of the buttons are white. See image. How can I change the color of the buttons back to red?

Rene
Hey Rene,

Edit the file /components/com_easyblog/themes/wireframe/blogs/latest/default.main.php . Locate for the following codes,


<a class="btn btn-default" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>


Replace it with,


<a class="btn btn-danger" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>


Sometimes it's really difficult to produce software for the masses because everyone wants everything and they want it differently. Making a settings for just the color of button is going to be insane
·
Thursday, 13 August 2015 00:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Mark. One last question. Will I have to re-apply this fix for every single update?

Rene
·
Thursday, 13 August 2015 00:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes of course because initially the buttons were blue, but users requested to have it in red. Then, when we switched it to red, users were requesting it to be white. So we are not going to change the color of the buttons again

If you want / need to modify it, customize it
·
Thursday, 13 August 2015 00:52
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post