metaglyphics
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Help] WordPress 4.0 and the video shortcodeI had the same issue. I solved it be adding a float to the video class in my dashboard. This was done by adding a CSS snippet to my theme’s functions file:
//Add CSS to Dashboard (fix for WP-Help) add_action('admin_head', 'wphelp_fix'); function wphelp_fix() { echo '<style> #cws-wp-help-document .wp-video { float:left;} </style>'; }
Forum: Plugins
In reply to: [YouTube SimpleGallery] Vimeo not showing in gallery – plugin author is deadAnybody ever figure this out? It looks like the shortcode simply ignores Vimeo links…
I’m also having this issue. The plugin was working beautifully, but now clicking on a thumbnail advances you to the video on YouTube.com instead of sliding up to the top and loading it in the iFrame.
My url is https://www.einsteinsgirl.com/the-show/video-gallery/
Any suggestions would be greatly appreciated!
Thanks,
DavidI think it can be down entirely by overriding the CSS. I’ve added the styles below to my theme’s CSS.
Your may be slightly different, but this might give you some clues…
.scrollgallery .imageareaContent .caption_container div { background:none !important; margin-bottom:0 !important; text-align:center} .scrollgallery .scrollGalleryHead { margin-top:0 !important;} .caption_container img { margin-top:0 !important; margin-bottom:48px !important; padding-top: 0 !important; padding-bottom: 0 !important} .scrollGalleryHead { padding-left: 0 !important} .scrollGalleryHead img { width:100% !important; height:auto !important} .scrollGalleryFoot { margin:0 10px 0 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; padding-left: 0 !important; } .scrollgallery .imageareaContent .caption_container div { right:0 !important; margin-top:-20px !important} @media only screen and (min-width: 300px) and (max-width: 1200px) { .scrollgallery { width:auto !important;} }
Did you ever figure this out?
Thanks.