Forum Activity for @douglas

douglas
@douglas
12/14/15 04:04:51AM
2,812 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,812 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,812 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,812 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,812 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.
douglas
@douglas
12/13/15 07:00:51AM
2,812 posts

How to make lists?


Using Jamroom

Can you show us what your using for your jrCore_list?
douglas
@douglas
12/13/15 06:58:50AM
2,812 posts

Footer social media links


Using Jamroom

All JR5 skins should have a social network tab in the skins settings.
douglas
@douglas
12/10/15 08:58:41AM
2,812 posts

Question Concerning autoplay=true


Using Jamroom

I don't believe the button player is setup to auto play and I'm not sure you would want to mainly because usually there are more than one on a page.

Aside from that, I believe the autoplay parameter would need to be in a jrCore_media_player function.

https://www.jamroom.net/the-jamroom-network/documentation/development/788/jrcore-media-player
updated by @douglas: 12/10/15 08:58:57AM
douglas
@douglas
12/09/15 08:29:20AM
2,812 posts

Google ads to Jamroom skin


Design and Skin Customization

Is that message its giving you in your error logs?

I can see the code is there... the only thing I can think is that maybe your google id isn't correct?
douglas
@douglas
12/09/15 07:37:36AM
2,812 posts

Google ads to Jamroom skin


Design and Skin Customization

Do you have a link that we can check out?
  122