Good afternoon!
The author of the plugin gave me the following code to fix the playlist, and this is the code he had me use to fix it:
.revolution_video_player.blackControllers .thumbsHolder_ThumbOFF .title {
display: inline-block !important;
}
However, it appears he forgot to tell me how to fix the video that was floating left on the page, but I had issues with other code of mine also wrapping around the title on other pages so I’m pretty sure the code for the title is the issue and that it’s a core issue with the theme.
Although the “clear: both;” is placed in the stylesheet in the “.title” classification in order to clear following text or images so they don’t float left, I’m pretty sure it’s not working.
Although I preferred not to do it, I fixed the float issue by adding a container around the content in the core file(s): single.php, etc.
I couldn’t think of another way to get around the problem so that was my solution.
In case it helps, all I did was assign “clear: both;” to the content in the single.php and will do so with any other files, if necessary:
.page_content {
clear: both;
}
<div class="page_content">
<?php the_content(); ?>
</div>
However, since I’m no expert in CSS, if there is a better fix for this when you update your theme in the future I’ll replace the customized version of this one with the new one. ??
Or if you come up with a better solution in the meantime, please let me know. Otherwise, this will do!
Oh yes, and I gave you a 5 star rating for your theme maybe 4-5 days ago. I love the theme!
Thank you for creating such a wonderful theme. It’s very flexible!
You have a fabulous Sunday too!
-
This reply was modified 4 years, 3 months ago by ttnorris.
-
This reply was modified 4 years, 3 months ago by ttnorris.