WallBB Forums
All MyBB Themes at WallBB Updated with improvements and Fixes - Printable Version

+- WallBB Forums (https://wallbb.co.uk/forums)
+-- Forum: Theme Section (https://wallbb.co.uk/forums/forumdisplay.php?fid=5)
+--- Forum: Announcements and Ask for MyBB help (https://wallbb.co.uk/forums/forumdisplay.php?fid=12)
+--- Thread: All MyBB Themes at WallBB Updated with improvements and Fixes (/showthread.php?tid=341)



All MyBB Themes at WallBB Updated with improvements and Fixes - WallBB - 05-21-2020

All MyBB Themes at WallBB Updated with improvements and Fixes

You can download them from your account
https://wallbb.co.uk/my-account/downloads/


Regards
WallBB


RE: All MyBB Themes at WallBB Updated with improvements and Fixes - JohnRip3r - 05-21-2020

Can you please drop a changelog because my existing GoDark has alot of customization done. MYBB doesn't support upgrade to new theme without losing existing changes.


RE: All MyBB Themes at WallBB Updated with improvements and Fixes - WallBB - 05-22-2020

For GoDark, it is related to youtube video Smile

1. Go to Admin CP > Templates and Style > Templates> GoDark> Video Embed Templates > video_youtube_embed
Code:
<iframe class="yt_fix" src="//www.youtube.com/embed/{$id}" frameborder="0" allowfullscreen></iframe>

2. Now go to css3.css and paste it at the bottom
Code:
@media only screen and (min-width: 769px) {
.yt_fix {
    width: 560px;
    height: 315px;
}
}
Now your Youtube video will be better on mobile and desktop devices.

Regards
WallBB


RE: All MyBB Themes at WallBB Updated with improvements and Fixes - JohnRip3r - 05-22-2020

(05-22-2020, 01:09 PM)WallBB Wrote: For GoDark, it is related to youtube video Smile

1. Go to Admin CP > Templates and Style > Templates> GoDark> Video Embed Templates > video_youtube_embed
Code:
<iframe class="yt_fix" src="//www.youtube.com/embed/{$id}" frameborder="0" allowfullscreen></iframe>

2. Now go to css3.css and paste it at the bottom
Code:
@media only screen and (min-width: 769px) {
.yt_fix {
    width: 560px;
    height: 315px;
}
}
Now your Youtube video will be better on mobile and desktop devices.

Regards
WallBB
Thank you fixed it