Forum Activity for @douglas

douglas
@douglas
12/16/15 03:43:04AM
2,807 posts

Video streaming questions


Using Jamroom

Jamroom converts videos to .flv and .m4v formats and uses and HTML5 player (jPlayer - http://jplayer.org/) to play the file, if a users browser does not support HTML5 players, it reverts to using a flash player, hence the two different formats.

Most mobile devices and computer browsers these days support HTML5 players.

Also, if you set a price on an uploaded video, Jamroom creates a sample of the video so the viewer can't see the entire video without paying for it.

Hope this helps!
douglas
@douglas
12/15/15 04:29:06AM
2,807 posts

Video streaming questions


Using Jamroom

1. The file isn't downloaded to the users computer for streaming. The file streams from your website using HTML5/Flash players.

3. Most devices these days are supported, all audio and video files that are uploaded to your site get converted to a file(s) that can be played on desktop and mobile devices.
douglas
@douglas
12/14/15 04:22:17AM
2,807 posts

Adding background image to Nova skin header


Design and Skin Customization

Sorry, I gave you the wrong place to add the image... in your skins/YOURSKIN/css/site.css file, find this:

/* @title Head Inner Div */
/* @help This is the inner div for the site header */
.head_inner {
    background-color:#949799;
    padding:6px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px 4px 0 0;
    box-shadow: 0 0 5px #111;
}

and replace the background-color line with your background code:

/* @title Head Inner Div */
/* @help This is the inner div for the site header */
.head_inner {
    background:transparent url('{$jrNova_img_url}/headerbg.gif') no-repeat;
    padding:6px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px 4px 0 0;
    box-shadow: 0 0 5px #111;
}
douglas
@douglas
12/14/15 04:04:51AM
2,807 posts

moving the "up" button


Using Jamroom

I think your referring to the scroll to top button at the bottom of the page, is that correct?

Are you wanting to move it up so it isn't behind the CometChat?

If so, find this in your skins/YOURSKIN/css/footer.css file:

.scrollup {
    width:40px;
    height:40px;
    opacity:0.5;
    position:fixed;
    bottom:10px;
    right:10px;
    display:none;
    text-indent:-9999px;
    background: url('{$jrNingja_img_url}/icon_top.png') no-repeat;
}


and add 20 or 30 pixels to the bottom element...

.scrollup {
    width:40px;
    height:40px;
    opacity:0.5;
    position:fixed;
    bottom:40px;
    right:10px;
    display:none;
    text-indent:-9999px;
    background: url('{$jrNingja_img_url}/icon_top.png') no-repeat;
}
douglas
@douglas
12/13/15 11:54:21AM
2,807 posts

Adding background image to Nova skin header


Design and Skin Customization

It depends on what type of image your wanting to put there.

The easiest way would be to add it via the header.css file.

Change this:

#header_content {
    height:100%;
    max-width:1140px;
    margin-left:auto;
    margin-right:auto;
}

to something like this for a single non repeating image:

#header_content {
    background:transparent url('{$jrNova_img_url}/YOURIMAGENAME.png') no-repeat;
    height:100%;
    max-width:1140px;
    margin-left:auto;
    margin-right:auto;
}

or like this for a repeating image:

#header_content {
    background:transparent url('{$jrNova_img_url}/YOURIMAGENAME.png');
    height:100%;
    max-width:1140px;
    margin-left:auto;
    margin-right:auto;
}

Forgot to add you'll want to change YOURIMAGENAME.png to the actual name of the image your using and have uploaded to your skins img directory.
updated by @douglas: 12/13/15 11:55:25AM
douglas
@douglas
12/13/15 11:49:06AM
2,807 posts

Remove Login option


Design and Skin Customization

That should already be the case, to remove the login and signup link, you'll just want to find this:

                {jrCore_module_url module="jrUser" assign="uurl"}
                {if $_conf.jrCore_maintenance_mode != 'on' && $_conf.jrUser_signup_on == 'on'}
                    <li><a href="{$jamroom_url}/{$uurl}/signup">{jrCore_lang skin=$_conf.jrCore_active_skin id="4" default="create account"}</a></li>
                {/if}
                <li><a href="{$jamroom_url}/{$uurl}/login">{jrCore_lang skin=$_conf.jrCore_active_skin id="5" default="login"}</a></li>

and either remove it or comment it out...

{*
                {jrCore_module_url module="jrUser" assign="uurl"}
                {if $_conf.jrCore_maintenance_mode != 'on' && $_conf.jrUser_signup_on == 'on'}
                    <li><a href="{$jamroom_url}/{$uurl}/signup">{jrCore_lang skin=$_conf.jrCore_active_skin id="4" default="create account"}</a></li>
                {/if}
                <li><a href="{$jamroom_url}/{$uurl}/login">{jrCore_lang skin=$_conf.jrCore_active_skin id="5" default="login"}</a></li>
*}

The links that show when logged in should still show.
douglas
@douglas
12/13/15 11:43:15AM
2,807 posts

How to make lists?


Using Jamroom

Are you using the latest version of Site Builder?
douglas
@douglas
12/13/15 07:04:14AM
2,807 posts

Remove Login option


Design and Skin Customization

You would want to remove or comment the link out in your skins/YOURSKIN/header_menu_desktop.tpl and skins/YOURSKIN/header_menu_mobile.tpl files.
  121