Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #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!

    #562839

    Hey janicenisha!

    Add this to your custom CSS.

    @media screen and (max-width: 767px) {
    .template-blog .blog-meta { display: block !important; float: none !important; }
    }

    Cheers!
    Elliott

    #562861

    Hi Elliot,

    Thanks for this, it works great.

    #562875

    Hi 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

    #563389

    Hi!

    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,
    Yigit

    #563399

    Hi 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

    #564197

    Hey!

    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,
    Andy

    #564290

    Hi Andy,

    Sure please see links below in mobile view.

    Thank you

    #564931

    Namaste 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,
    Vinay

    #566864

    Hi 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

    #567741

    Hi!

    This is how the page looks on my end and it seem fine to me please elaborate…

    Cheers!
    Vinay

    #567749

    Hi 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!

    #567833

    Hey!

    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,
    Vinay

    #568714

    Hi Vinay,

    Noted and thanks. Yup those lines did not work. Really appreciate you taking a look at this. My login details as below.

    #569967

    Hi!

    try this code instead:

    @media only screen and (max-width: 767px) {
    .entry-content-wrapper.clearfix.standard-content {
    width: 100%;
    }} 
    

    Cheers!
    Andy

    #570269

    Andy, 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.

    #571093

    Hi,

    Great, glad we could help. Please let us know if you should need any more help on the topic.

    Thanks,
    Rikard

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘How to also show Gravatar (author profile pic) on mobile’ is closed to new replies.