By Bruno Alecrim on Friday, 15 July 2016
Posted in Technical Issues
Replies 7
Likes 0
Views 778
Votes 0
Hello we need to correct some issues in EadyDiscuss... in total is 4 topics.

1 - (in the index page)... the title is overlaping the icon in right.

2 - Adjust the size of title

3 - Adjust the size of question text

4 - Issue with facebook share button

To make ieasier to understand I attached 2 images

Thanks
Bruno
Hi Bruno,
1. I will provide you a temporary fix for this, I have also logged the issue in the tracker and see what can the developer do about it.
2., 3., 4.
Can you apply the code I have provided below into the custom.css file? You can create the file in the directory below if you have not done so.
JoomlaFolder\templates\yourTemplate\html\com_easydiscuss\css\custom.css
Here is the code:
#ed .discuss-list .ed-posts-list .o-flag {
width: 95% !important;
}

#ed .ed-post-item.has-body .o-grid__cell .ed-post-item__title {
font-size: 14px !important;
}

#ed .ed-post-item.has-body .ed-post-item__bd .ed-post-content {
font-size: 13px !important;
}

#ed .social-button.google-share {
width: 200px !important;
}

You can adjust the font size for title and question content in the code.
For the social button, I have enabled Facebook share button for you so you should be able to see it. The text is actually the "Share this on Google+" text and it was not appearing correctly due to the language in your screenshot having a longer text. The length of text for different languages differ so it is hard to pin point the exact width of the element. You can adjust the width of the google share text too in the custom css code. Hope this helped.
·
Friday, 15 July 2016 12:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Raymond, I did the adjust you suggest and it worked... but the text beside of G+ Share button in portuguese is too long, is there a way to simply disable/hide that text?

Thanks
Bruno
·
Saturday, 16 July 2016 01:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

Actually we just call the Google API to render the button, this is actually we can't handle it.

Perhaps you can turn off this Google share button from backend > Easydiscuss > social integration > Google share tab > set to NO.

Because I realised both `Google Plus` and `Google Plus share` it does the same thing.
·
Saturday, 16 July 2016 12:04
·
0 Likes
·
0 Votes
·
0 Comments
·
And what about the index page of EadyDiscuss?
Take a look at the attached image, for more details.

Thanks for your very effective response.
·
Saturday, 16 July 2016 16:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

I have a little bit lost here, do you mean you would like to change the title size from the forum frontpage?

If yes, you can apply following css code into your template css file.


#ed .ed-post-item__title {
font-size: 15px !important;
}
·
Sunday, 17 July 2016 13:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Ok iI did it, but that adjustment worked only to the Question Text, when someone answer that question all reply still with the small text size, and we need to make all text bigger and same size. Take a look to the attached image for a easy understanding:

Thanks again
Bruno
·
Thursday, 21 July 2016 04:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Bruno,
Try to use this custom css codes to adjust the reply content font size.
#ed .ed-reply-content {
font-size:15px !important;
}
·
Thursday, 21 July 2016 10:52
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post