Home › Forums › Gillion Theme › Post meta not shown inline
Home › Forums › Gillion Theme › Post meta not shown inline
Please see attached screenshot. The author pic, name. and other meta details are not aligned and this is shown in full-screen resolution and small screens too.
Wondering how could I really fix it?
https://tea-time-with-testerscom-5cc6a4.ingress-daribow.easywp.com/
Thanks,
Lalit
Hi Lalit,
Thank you for your question.
You can align it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
#page-container .post-auhor-date > a { display: inline-block; vertical-align: middle; }
Best regards,
Shufflehound team
It worked. Thanks a lot.
Hello again,
Just noticed that same problem is now seen on other blocks on website. Please see attached screenshot.
The code you gave me, fixed the problem only for full width sliders but not everywhere.
What should I do so that this problem is solved for every block?
Thanks,
Lalit
Please also use the below custom CSS code.
#page-container .post-meta-content span.post-readtime { display: inline-block; }
Hi,
Including the previous code snippet you gave me, now I have below code in my custom CSS code which does not seem to work for the second broken author meta.
I believe this needs to be written without any error? Could you tell me if these both blocks are together like below?
#page-container .post-auhor-date > a {
display: inline-block;
vertical-align: middle;
}
#page-container .post-meta-content span.post-readtime {
display: inline-block;
}
I can see it is displaying fine now in the next line in your shared screenshot.
Please advise.