Posts: 25
Threads: 8
Joined: Jul 2021
Commentics v4.2
Hi Steven,
I've searched & searched with no luck. Where does one edit to change the size of videos posted on previews and comments? It appears they're currently being shown about 300px x 150px?
Please Advise.
Posts: 2,895
Threads: 59
Joined: Jun 2010
Hi you can change the dimensions using CSS:
Code:
.cmtx_youtube_container iframe {
width:
height:
}
Have
you completed
the interview?
Posts: 25
Threads: 8
Joined: Jul 2021
Yes, I saw that in both .css files, BUT... they both said:
Code:
.cmtx_youtube_container iframe {
So since they're both marked as max-width: 100%.... WHY are they only 300px wide???
That's why I was thinking there was probably somewhere else controlling that.
Posts: 2,895
Threads: 59
Joined: Jun 2010
Max-width isn't stating that it should be 100%, it's stating that it can't be more than 100%.
There's actually no width statement, meaning it's at its natural width (which in this case is 300px).
Have
you completed
the interview?
Posts: 25
Threads: 8
Joined: Jul 2021