-
AuthorPosts
-
January 11, 2016 at 2:05 am #562838
Hi there,
I notice the Gravatar author image disappears on mobile version, is there any way to get it to show maybe above or below the title?
Thanks!
January 11, 2016 at 2:27 am #562839Hey janicenisha!
Add this to your custom CSS.
@media screen and (max-width: 767px) { .template-blog .blog-meta { display: block !important; float: none !important; } }
Cheers!
ElliottJanuary 11, 2016 at 2:55 am #562861Hi Elliot,
Thanks for this, it works great.
January 11, 2016 at 3:22 am #562875Hi Elliot,
Sorry, I have another related question – am having an issue with the spacing on mobile because of this. I added a margin-top to the text so the icon now goes on top. (I can’t have the text pushed too much to the right as the whole article becomes really long on mobile)
@media only screen and (max-width: 767px) {
.responsive .content .entry-content-wrapper {
padding: 0;
margin-top: 100px;}This works, except that it affects all my other post pages where the thumbnail now sits on top of the text as opposed to on the left.
So my question is – is it possible to separate the content and the title, where I can get the content to start on the extreme left and the title and author remain as is?
Or is there another solution to this?
Thank you very much
January 11, 2016 at 5:55 pm #563389Hi!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) { .responsive .content .entry-content-wrapper { float: left; }}
Best regards,
YigitJanuary 11, 2016 at 6:12 pm #563399Hi Yigit,
Thanks for replying. This works for the author image, but the problem is that all other blog posts get affected on mobile too – the small preview image now sits on top of the title instead of sitting next to the title. Is there a way to just make the div.entry-content float to the left without affecting the title?
Thanks
January 12, 2016 at 10:51 pm #564197Hey!
can you provide us precise links where we can see the issue please? we need to be able to inspect the elements in question.
Regards,
AndyJanuary 13, 2016 at 3:46 am #564290Hi Andy,
Sure please see links below in mobile view.
Thank you
January 13, 2016 at 6:38 pm #564931Namaste Nisha!
Please add the below CSS to Enfold > General Styling > Quick CSS
@media only screen and (max-width: 767px) { .main_color .rounded-container { position: absolute; } .responsive .content .entry-content-wrapper { padding-top: 120px!important; } }
It should look similar to
Regards,
VinayJanuary 18, 2016 at 2:17 am #566864Hi Vinay Namaste ;)
Thanks for replying. I’ve gotten it to work, but it poses an issue on my other posts. Pls see http://103.51.41.206/~hwangimc/aham/fundamentals/ now the text for all posts have gone down. Could you pls advise as to how I can get it back to float left to the thumbnail? Thanks
January 19, 2016 at 10:49 am #567741Hi!
This is how the page looks on my end and it seem fine to me please elaborate…
Cheers!
VinayJanuary 19, 2016 at 11:09 am #567749Hi Vinay,
Sorry, I’ve since changed it back as I had to show it to the client. But the issue am facing, when I use the code suggested, the title and text goes down below the icon/author image. This works great for the author posts but not for the others. So am now using
@media screen and (max-width: 767px) {
.template-blog .blog-meta { display: block !important; float: none !important; }
}The issue am facing –
Please see this link on mobile view : http://103.51.41.206/~hwangimc/aham/fund-managers-journal/a-brief-on-global-local-markets-investment-strategy/
Is there a way for just the body of text to fill the screen and start from the left as per this screenshot http://103.51.41.206/~hwangimc/aham/wp-content/uploads/screenshot.jpg instead of the whole text including title shifting down below the image?
Thanks!
January 19, 2016 at 2:45 pm #567833Hey!
We tried to produce what you asked for but that requires a lot of customization and change in html structure you will probably have to hire a freelancer to accomplish it.
However if the earlier solution provided worked for you on this page and caused problem on the other pages we can target only the post pages. That way changes are applied to only post pages… please try the below code and let us know… if it did not work would you please create a admin login for us and provide the info in the private message.
@media only screen and (max-width: 767px) { .single-post .main_color .rounded-container { position: absolute; } .single-post .entry-content-wrapper { padding-top: 120px!important; } }
Regards,
VinayJanuary 20, 2016 at 4:18 pm #568714Hi Vinay,
Noted and thanks. Yup those lines did not work. Really appreciate you taking a look at this. My login details as below.
January 22, 2016 at 12:47 pm #569967Hi!
try this code instead:
@media only screen and (max-width: 767px) { .entry-content-wrapper.clearfix.standard-content { width: 100%; }}
Cheers!
AndyJanuary 22, 2016 at 6:38 pm #570269Andy, thank you very much, this worked great! Exactly what I was looking for. Thanks to the rest of the support team too, you guys are really great.
January 25, 2016 at 6:00 am #571093 -
AuthorPosts
- The topic ‘How to also show Gravatar (author profile pic) on mobile’ is closed to new replies.