briton
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Youtube Channel Gallery] Whole PageRead the instructions carefully.
You can put something like
[Youtube_Channel_Gallery user="Microsoft" videowidth="580" ratio="16x9" theme="light" color="white" autoplay="0" rel="0" showinfo="0" maxitems="16" thumbwidth="125" thumbratio="16x9" thumbcolumns="4" title="1" description="0" thumbnail_alignment="bottom" descriptionwordsnumber="6"]in a normal page and it’d display them on the page and not in the sidebar.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Want to see video title at top of playerForum: Plugins
In reply to: [Youtube Channel Gallery] Want to see video title at top of playerDo you mean the main player? If so, then in youtube-channel-gallery.php find
//player if ( $ytchag_player == '1' ) { require 'templates/player.php'; }and put before it
$content .= '<div class="mainPlayerTitleDiv"><label id="mainPlayerTitle">' . $title . '</label></div>';I made the following tweak to make it work in youtube-channel-gallery.php file:
Put an onclick event in the link of the thumbnail:
onclick="document.getElementById(\'mainPlayerTitle\').innerHTML=\''. $title .'\'"And then you have right after you player:
$content .= '<div class="mainPlayerTitleDiv"><label id="mainPlayerTitle">' . $title . '</label></div>';Just have in mind that if the plugin updates, changes would be lost.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Change font of thumbnail titlesOverride or just add to the style of the link.
Example:
.ytctitle a { font-family: Verdana; font-size: 12px; }
Viewing 5 replies - 1 through 5 (of 5 total)