Forum Activity for @douglas

douglas
@douglas
07/07/15 11:43:38AM
2,812 posts

Create File for Download


Using Jamroom

Are you using the latest jrFile module version 1.0.9?
douglas
@douglas
07/07/15 09:19:15AM
2,812 posts

Create File for Download


Using Jamroom

Make sure that you have added the allowed types to the correct quota, if you do not check the apply to all quotas check box, then it only applies the file types to one quota.

I just checked this on my dev site and I'm not seeing any issues.
douglas
@douglas
07/07/15 08:53:06AM
2,812 posts

Error: Offsite media downloads are blocked


Installation and Configuration

Is your ACP > Media > Audio Support > Global Config > Block File Downloads check box checked?
douglas
@douglas
07/06/15 12:49:28PM
2,812 posts

jrGenosis Skin broke everything


Genosis

It looks like it is working now, I've activated the Genosis modules and changed the skin to the Genosis skin and I'm not seeing an issue. Note that the site will be empty until you get the first tree setup. Just follow the "Tips" by clicking the "Continue" button on the Tip Popup.
douglas
@douglas
07/06/15 06:46:07AM
2,812 posts

jrGenosis Skin broke everything


Genosis

If you can send us your admin login and FTP access we can take a look at it for you.

Send it to support[at]jamroom[dot]net.
douglas
@douglas
07/06/15 06:41:18AM
2,812 posts

Private Notes Logo?


Design and Skin Customization

If the private note was sent before the logo image was changed, it will not change in the private note, but should show the correct image going forward. Are you seeing the old log image in new private notes?
douglas
@douglas
07/06/15 06:30:54AM
2,812 posts

Background Image


Design and Skin Customization

Zachary Moonshine"]
this was the code i used at ning

body.page-live-chat:before{content:",";
background-image: url(...}

would this work and just change the url ?

That is basically what I've posted... it mighht look more like this though.

.single_bckgrnd {
    background-image: url('{$jrElastic_img_url}/bckgrd.png');
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

You can change the class name ".single_bckgrnd" to whatever you would like it to be. And you'll want make sure to change this "{$jrElastic_img_url}/bckgrd.png" to your skin name and image name.

{$xxYOURSKINNAME_img_url}/yourimagename.png or yourimagename.jpg depending on what type of image you are using.

Then if you wrap code in a div with your class name.

<div class="single_bckgrnd">
    More code here....
</div>

then you should see your background image.
updated by @douglas: 07/06/15 06:31:57AM
douglas
@douglas
07/06/15 06:22:46AM
2,812 posts

Background Image


Design and Skin Customization

Strumelia:
Cool Douglas!
I know a little html already.
Would you suggest I start by looking through their css, or their w3css first? (w3 is the mobile responsive i assume?)

If you want to learn more HTML, I would suggest starting at the top left link here:

http://www.w3schools.com/

Learn HTML, Learn CSS and then Learn W3.CSS
douglas
@douglas
07/05/15 12:24:49PM
2,812 posts

Advertisement Placement?


Design and Skin Customization

You can still add the ad code to the header and footer and if you only want the ads to show on the home/index page, add this if statement around your ad code...

{if isset($selected) && $selected == 'home'}
Your ad code goes here...
{/if}

that should work for the Ningja skin, for the Elastic skin, you'll want to add this to the top of the index.tpl file in addition to the above code.

{assign var="selected" value="home"}

updated by @douglas: 07/05/15 12:25:32PM
  143