Forum Activity for @michael

michael
@michael
12/21/17 01:41:15PM
7,826 posts

Christmas Decorations


Using Jamroom

either of those locations would work. add it to one, then move it to a different one if its snowing in the wrong location.
michael
@michael
12/21/17 11:37:18AM
7,826 posts

Christmas Decorations


Using Jamroom

so what you want to do is put an id on the div you want the snowstorm to appear in. That id can be anything, (but make it one word with no weird characters or spaces and it must be unique to the page.) ideas for some acceptable examples:
id="snowstormArea"
id="the_snowstorm_section"
id="i_want_the_snowstorm_here"

like that......

Once that id is in place on whichever div you want to snow, then use that id in the snowstorm.js
michael
@michael
12/19/17 06:27:38PM
7,826 posts

Christmas Decorations


Using Jamroom

Great. Change this:
<div class="container">
to this
<div class="container" id="about_section">

Then in the snowstorm.js file change this:
this.targetElement = null; 
to
this.targetElement = 'about_section'; 
and it should work.
michael
@michael
12/19/17 03:05:23PM
7,826 posts

Smarty link to soundcloud with username and title?


Design and Skin Customization

In the Form Designer there is an option to add a DEFAULT value. ( I'm not totally understanding your meaning i suspect though. )
form_field.jpg form_field.jpg - 55KB

updated by @michael: 12/19/17 03:05:43PM
michael
@michael
12/19/17 02:06:32PM
7,826 posts

Smarty link to soundcloud with username and title?


Design and Skin Customization

Don't give up on it. Just need to find a way to make sure you have the right info.

You could use the FORM DESIGNER to add another form field to wherever, maybe the PROFILE SETTINGS form that collects their soundcloud url.

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

Then you WILL have the correct soundcloud profile url.
michael
@michael
12/19/17 01:09:09PM
7,826 posts

Christmas Decorations


Using Jamroom

Not seeing the location of the "...Main page Admin blog section "About"...." but get it working first, then try adjusting the target element in the snowstorm.js file to target the ABOUT section.
snowstorm.jpg snowstorm.jpg - 226KB
michael
@michael
12/19/17 01:02:25PM
7,826 posts

Christmas Decorations


Using Jamroom

Doesn't look like you can confine the snow to just 'inside' with this script strumelia. These are the options it has:
http://www.schillmania.com/projects/snowstorm/#customizing

And I'm not seeing a target to just have it snow inside a section.

It was the first one from the search results though, so if you care to look for a different snow script and can locate one you like that does work inside a box I'm sure we can get that working too.

--edit--
spoke too soon, it DOES look like you can target one div:
this.targetElement = null;      // element which snow will be appended to (null = document.body) - can be an element ID eg. 'myDiv', or a DOM node reference

Will look at what your about div is called, hold on.
updated by @michael: 12/19/17 01:04:37PM
michael
@michael
12/19/17 12:36:56PM
7,826 posts

Smarty link to soundcloud with username and title?


Design and Skin Customization

There is but its no guarantee that the user is going to be on soundcloud or that the generated url is going to be the correct one.

The function to change
this is a long sentence
into
this-is-a-long-sentence
is
{$item.soundcloud_artist|jrCore_url_string}
michael
@michael
12/18/17 07:37:44PM
7,826 posts

TinyMce Image Margin Not Showing in Firefox


Design and Skin Customization

try with !important
p figure {
 margin: 10px !important;
}
Might not make a difference because the javascript is putting its CSS directly on the image element in a style="". Are there settings you can adjust for that javascript?
updated by @michael: 12/18/17 07:37:58PM
  164