On WordPress i’m using youtube channel list plugin.
It works well, but the align of the videos don’t looks great. Actually display diagonal list below the BIG video!
Can someone suggest me how to fix this issue with css?
here’s the page
http://www.snowypeach.com/home/?page_id=1106
I need the list under the video aligned horizontal, not diagonal!
You have nested a
<div />as a child of the<ul />. This is invalid markup. Move the<li/>elements to be the children of the<ul />, delete the<div />and it will workEDIT
Okay I see the problem. You are wrapping all this content within a
<pre/>tag. This tag shouldn’t be used here but if you are unable to get rid of it add the stylewhite-space: normal;.I tested the previous answer by moving elements within chrome dev tools which removed the whitespace and therefore the problem.
Hope this helps 🙂