g-cqd / aemi-wp

Aemi WordPress theme
https://wordpress.org/themes/aemi/
GNU General Public License v3.0
12 stars 1 forks source link

Excerpt not resizing on three-column format homepage on desktop only #10

Closed keempoo closed 3 years ago

keempoo commented 3 years ago

Describe the bug Meta excerpt on some page will not wrap when in 2 or 3 column boxes. Looks like the bounding box remains the size of one-column. Works fine on mobile.

To Reproduce Steps to reproduce the behavior:

  1. Go to Appearance> Customize> Aemi> Content Loop> Post Listing Column Layout
  2. Choose 2 or 3 column layout

Expected behavior Excerpt text to wrap but is cut off.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Smartphone (please complete the following information):

Additional context I added in Customize> Additional CSS the following code for the thumbail images to be full height: .site-loop .post-attachment {max-height: 100%;}

Removing it does not fix the problem

g-cqd commented 3 years ago

Hi @keempoo , Thanks for your accurately-described issue. Can you provide me a screenshot to help me fully understand the problem ?

Best Regards

keempoo commented 3 years ago

Sure! I also forgot to send the url, apologies https://www.astrosalad.com/ image

g-cqd commented 3 years ago

Hello @keempoo ,

I reviewed the bug and, the fix is the following :

.site-loop .post-meta {
    width: auto;
}

It should ensure post meta to not overflow post header in the post loop.

Tell me if you need any more help or whatever.

Kind regards,

Guillaume

PS : This issue will be fixed in next version of Aemi theme.

keempoo commented 3 years ago

That does it! Thanks so much!

On Mon, Feb 1, 2021 at 12:02 PM Guillaume C. notifications@github.com wrote:

Hello @keempoo https://github.com/keempoo ,

I reviewed the bug and, the fix is the following :

.site-loop .post-meta { width: auto; }

It should ensure post meta to not overflow post header in the post loop.

Tell me if you need any more help or whatever.

Kind regards,

Guillaume

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/aemi-dev/aemi/issues/10#issuecomment-771044359, or unsubscribe https://github.com/notifications/unsubscribe-auth/ALLGFD5V6XG57R46OFZNNSTS43UEZANCNFSM4WVLWGPA .

g-cqd commented 3 years ago

Hi @keempoo ,

This issue is officially fixed in Aemi 2.0.9, please update the theme and feel free to keep me up to date if anything goes wrong.

I also added the attachment height fix. Thank you for that too.

Best Regards,

Guillaume