By sky on Monday, 13 April 2015
Posted in Technical Issues
Replies 7
Likes 0
Views 520
Votes 0
facebook like button can show in desktop view, but not shown in mobile view

also how to move the blog date from the bottom to the top of the article?
Hello Sky,

I can't seems to replicate the issue in my local. Can you provide us with your Joomla backend and FTP access so we can check on the issue directly? Please provide us with the url of the page that the facebook like button is not being rendered properly.
·
Monday, 13 April 2015 13:55
·
0 Likes
·
0 Votes
·
0 Comments
·
the url of the page already put in site details tab
sky
·
Monday, 13 April 2015 19:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

I am sorry as I can't see any credentials provided in the site details tab. We need this access in order to assist you further on this issue.

Please advise.
·
Monday, 13 April 2015 21:10
·
0 Likes
·
0 Votes
·
0 Comments
·
pls see updated login
sky
·
Tuesday, 14 April 2015 11:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,

Regarding your inquiry, by default EasyBlog will hide the share button when in narrow view (mobile view). You can go to this file: /components/com_easyblog/themes/default/css/styles.css line: 1060 and find this code:

/*hide map and sharing in narrow view*/
#eblog-wrapper.w320 #ezblog-body .map-images,
#eblog-wrapper.w600 #ezblog-body .map-images,
#eblog-wrapper.w600 #socialbutton,
#eblog-wrapper.w600 #socialbutton .socialbutton-vertical {
display: none !important;
}

Update the code to this:

/*hide map and sharing in narrow view*/
#eblog-wrapper.w320 #ezblog-body .map-images,
#eblog-wrapper.w600 #ezblog-body .map-images {
display: none !important;
}


Hope this helps.
·
Tuesday, 14 April 2015 12:28
·
0 Likes
·
0 Votes
·
0 Comments
·
how to do it in override prevent update override it?

also how to move the blog date from the bottom to the top of the article?
sky
·
Tuesday, 14 April 2015 12:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Sky,

how to do it in override prevent update override it?

Unfortunately it is not possible to override the css when it involving with the removing of the css code.

how to move the blog date from the bottom to the top of the article?

You need to manually edit the code from /components/com_easyblog/themes/blog.read.php and locate the code below at line 135,
http://screen.stackideas.com/2015-04-14_1327.png

cut it and paste it to between line 35 and 36 so that the modified date will be shown under the blog title.
·
Tuesday, 14 April 2015 13:25
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post