Jump to content

Arai

Clients
  • Posts

    193
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Arai got a reaction from Michael.J in Donations Support   
    Bingo!, through all these experiments I'm starting to get the hang of ips coding.
    Thank you ipsPad_half did the trick.
  2. Like
    Arai reacted to Michael.J in Donations Support   
    How about replacing with ipsPad_half ?
  3. Like
    Arai reacted to GrooveOnBeat in Videobox   
    In CSS one way is to set a background position to center/center like
    background-position: center center;For later browser support maybe background-size ("cover" to crop while "contain" to keep aspect ratio within container dimensions), and "object" properties, but I don't recommend using those just yet since they're not widely a standard.
  4. Like
    Arai got a reaction from wmarcy in Videobox   
    Thanks again, you always deliver 
    The best 3rd party support on the Marketplace that's for sure.
  5. Like
    Arai got a reaction from onlyME in Videobox   
    Thanks again, you always deliver 
    The best 3rd party support on the Marketplace that's for sure.
  6. Like
    Arai reacted to onlyME in Videobox   
    That's is due to the old template bit of old IPS versions. I will apply this fix in the next version of Videobox.
    In Themes -> Videobox -> Global -> Menu
    Find
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{if \IPS\Settings::i()->show_home_link}} <li data-role='navItem'><a href='{setting="home_url"}'>{lang="home_name_value"}</a></li> {{endif}} {{foreach \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) as $id => $nav}} {{if $nav->canView()}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}" href='{$nav->link()}' {{if $nav->active()}}class='active'{{endif}} {{if $children = $nav->children()}}data-ipsMenu{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Replace by
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{$extensions = ( \IPS\Member::loggedIn()->language()->isrtl ) ? array_reverse( \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) ) : \IPS\Application::allExtensions( 'core', 'FrontNavigation' );}} {{foreach $extensions as $id => $nav}} {{if $nav->canView()}} {{$tabId = uniqid();}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}" href='{$nav->link()}' class='elNavigation_app_{$id}{{if $nav->active()}} ipsNavActive{{endif}}' {{if $children = $nav->children()}}data-ipsMenu data-ipsMenu-activeClass='ipsNavActive_menu'{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Save
  7. Like
    Arai reacted to onlyME in Videobox   
    Yes, it's a small bug, I fixed for you.

  8. Like
    Arai got a reaction from Oprime in Videobox   
    Not sure if it's a bug, but if it's not then it's really weird.
    If search is enabled you'll only find videos when using the search function and it won't find anything else on the forum (like topics).
    I thought it would include videos in the default search result if there were a video that matched the search criteria, instead of only displaying results for videos.
  9. Like
    Arai reacted to onlyME in Videobox   
    It's a widget, just drag & place it to bottom

×
×
  • Create New...