Forum Activity for @strumelia

Strumelia
@strumelia
12/31/17 09:02:20AM
3,603 posts

User "sort by last login" not functioning right..?


Using Jamroom

This is an important way for me to periodically remove long-inactive members. It used to work fine, but now it seems to not sort correctly when i sort the Users browser by the "Last login" date column:
https://fotmd.com/user/browser/order_by=user_last_login/order_dir=numerical_asc
I only do this particular sort function occasionally, so I'm not sure when it stopped working like it used to. ..?
updated by @strumelia: 04/10/18 03:43:06PM
Strumelia
@strumelia
12/30/17 03:14:03PM
3,603 posts

Happy Holiday!


Off Topic

That's MINUS 16 C, Boplive. :-o
Strumelia
@strumelia
12/30/17 07:46:00AM
3,603 posts

Happy Holiday!


Off Topic

Meanwhile... it's -16 C and snowing here in NY... (3 F) =8-0
Strumelia
@strumelia
12/29/17 08:21:28AM
3,603 posts

Happy Holiday!


Off Topic

Snow on the ground, but absolutely frigid cold week here...single digit F highs on some days... yikes!
We went out for hot chocolate this morning, just to break up Winter's icy grip. Hope you're all keeping cozy!
Strumelia
@strumelia
12/25/17 10:27:03AM
3,603 posts

Cyber Monday - up to $200 off Jamroom Premium and Pro!


Announcements

I see the kitten too... I scroll through 3 pics:
1: M&M's Jr Santa
2: SteveX's screenshot of the kitten
3: the kitten itself... just identified as "image 3 of 3"

If i "copy image's address", it gives me the following URL...so looks like it's coming from the JR Chat image files, image #559 ? :
https://www.jamroom.net/chat/image/chat_file/559/512?_v=51385

All that said, ....I like kittens.
updated by @strumelia: 12/25/17 10:27:34AM
Strumelia
@strumelia
12/25/17 10:16:10AM
3,603 posts

Happy Holiday!


Off Topic

Warm wishes to you as well Jimmy... and to all Jamroom friends!

...And special thanks and hugs to the fabulous Jamroom Team who are so good to us all year long. :)
Strumelia
@strumelia
12/23/17 02:57:17PM
3,603 posts

Christmas Decorations


Using Jamroom

Well, just to finish up on my fiddling around with this snow script on my Jamroom...
I tried Douglas' method but I came up against my own lack of skills in applying it, so I started over and undid everything.
Then i tried Michael's method again and applied his last code as well, for the 'relative block position'. This actually worked to center the snow in my About section at top of my main page.
So... I had the snow going in the area i wanted it!
However, I then ran into problems customizing the snow effects as per the instructions in the snow script itself. I understood their instructions. But could not turn off the damned mousefollow effect ("null" and "False" both did nothing), and the speed of the snow was also wildly fluctuating....was totally different every time I refreshed my browser page. Changing the numbers and values in the script the way they instructed didn't seem to do what it should. Couldn't get rid of the fact that moving my mouse to one side of my home page would create a 200mph blizard. Annoying as heck!! =8-0
Finally, I went to check out my snow on windows in browsers other than my usual Chrome. I found there was NO snow showing on either FF or Safari. Well that was the last straw. Pffft! At this point I'm dumping the whole thing.
Life is too short to spend five hours on trying to get some snowflakes that I'd have to remove after New Years anyway... I'd rather be eating chocolate pudding and watching a movie. L O L

But hey Douglas and Michael, THANK you for your time and energy in helping me with this- you did your part. I did learn a little something here and there while I fumbled about in the codes you gave me, and i got it work in the correct location.
I suspect the script may be outdated in some way as well, or won't play nice with some newer browsers.

We're supposed to get five inches of the REAL stuff....snow...tomorrow. So I'll be shoveling and will get sick of snowflakes by that time. ;)
Strumelia
@strumelia
12/22/17 12:18:37PM
3,603 posts

Christmas Decorations


Using Jamroom

Ok, i'll work on this tonight! :)
Strumelia
@strumelia
12/22/17 08:46:11AM
3,603 posts

Christmas Decorations


Using Jamroom

Thanks you two!
Douglas- hmm... if i follow your instructions, do I then NOT need to do Michael's last instructions of adding the relative block position in the CSS?
(and Michael: I've been looking at all my skin's CSS files..can't figure out which css file to add this code to...does it matter?*
Douglas: can you suggest to me which CSS file in my skin that I should add this SNOW DIV in the beginning of your instructions? There are so many css files in my skin, and none of them seem particularly related to that area of my site, or to Admin Blogs. :(

* P.S. Michael: your screenshot seems to show the snow falling in the correct area... I'd try your css suggestion first (since it's simpler to try), but I can't figure out which css file to add it to. Ugh, sorry to be so dense.
updated by @strumelia: 12/22/17 09:00:58AM
Strumelia
@strumelia
12/21/17 04:22:35PM
3,603 posts

Christmas Decorations


Using Jamroom

Those didn't work for me. I eventually went into my custom skin's Index_About.tpl ...and I added it there instead. That got some snow into the main page upper section, but it's kind of off centered to the left, and is limited to only the topmost part of the About section, but at least it's something! : https://pennywhistleclub.com/
Here is where I put the id, in that Index_About template:
{if isset($_items)}
<div style="margin: 10px 10px 0 10px;padding-bottom: 2px;">
    {jrCore_module_url module="jrBlog" assign="burl"}
    {foreach from=$_items item="item"}
        <div class="p10" id="snowstormArea">
            
            {$item.blog_text|jrCore_format_string:$item.profile_quota_id:null:nl2br|jrBlog_readmore}
            {if strpos($item.blog_text,'<!-- pagebreak -->')}
                <span class="info"><a href="{$jamroom_url}/{$item.profile_url}/{$burl}/{$item._item_id}/{$item.blog_title_url}">{jrCore_lang module="jrBlog" id="25" default="Read more"} &raquo;</a></span>
            {/if}
        </div>
    {/foreach}
</div>
{elseif jrUser_is_master()}
    <div class="center p10">
        Create an Admin blog with the category set to <b>about</b> to add content to this section.
    </div>
{else}
    <div class="center p10">
        <h1>Welcome to {$_conf.jrCore_system_name}!</h1>
    </div>
{/if}
  60