Forum Activity for @douglas

douglas
@douglas
01/05/15 05:12:52AM
2,812 posts

Default paragraph formatting of Event text is screwy


Ning To Jamroom

I'm not seeing a spacing issue, do you have a link we can check out?

Thanks!
douglas
@douglas
01/05/15 05:07:06AM
2,812 posts

How do I remove the URL links in the images on Media Pro 5 ?


Design and Skin Customization

AndyF:
Actually, your recommendation does NOT work on the 728x90 Bottom Ad (works just fine on the other 2 ads though). How to I remove that one??

I'm not seeing a bottom ad on your site, did you get this figured out?
douglas
@douglas
01/05/15 05:04:16AM
2,812 posts

autoplay embeded playlists


Design and Skin Customization

I'm not sure about the shuffle, but you can add autolplay=true to your jrCore_media_player function.

Hope this helps! :)
douglas
@douglas
01/04/15 10:51:42AM
2,812 posts

Changing the height of the header


Ning To Jamroom

brian:
I am now checking this out and I'm not seeing an issue with incorrect pixel sizes for the #header height value, so I want to double check that I am looking at the same thing you're looking at:

- I'm using the NingJa skin
- I go into ACP -> Skins -> NingJa -> Style
- I select the "header.css" option in the Style Section select element
- the #header element shows a height of 75px, with 5px increments all the way to 600px.

Am I looking at the same element you are?

Thanks!

I'm seeing the same as you Brian only if you change the height of the #header div you also have to change the height of the spacer class so the page content isn't behind the header, however the .spacer height only goes to 50px in the skins > styles section... shouldn't that go higher than 50?
douglas
@douglas
01/03/15 12:20:32PM
2,812 posts

Media Pro 5 - Light Blog menu button


Design and Skin Customization

It looks like your using ProJam Light not MedaiPro Light, is that correct?

Can you send us your admin login and FTP info so we can take a look. support[at]jamroom[dot]net

I'm not seeing any issues on my dev or test site for ProJam or MediaPro.

Thanks!
douglas
@douglas
01/03/15 10:37:22AM
2,812 posts

Media Pro 5 - Light Blog menu button


Design and Skin Customization

Are you seeing any activity, debug or php error logs in your ACP > System Tools > Activity Logs?

Thanks!
douglas
@douglas
01/03/15 10:32:23AM
2,812 posts

Media Pro 5 - Light Blog menu button


Design and Skin Customization

Make sure you've checked out the skins readme file.

yoursite/skins/jrMediaProLight/readme.html

there are blog categories you'll want to use to get the blog to show in the correct sections.

Hope this helps! :)
updated by @douglas: 01/03/15 10:32:44AM
douglas
@douglas
01/01/15 02:48:39PM
2,812 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

Glad to hear it.

I'll get it added in for the next release.

Thanks! :)
douglas
@douglas
01/01/15 02:25:31PM
2,812 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

Before trying to add in the clearing div, replace your skins/jrNingja/jrGallery_index.tpl file with this code:

{jrCore_include template="header.tpl"}

{capture name="template" assign="tpl"}
{literal}
{jrCore_module_url module="jrGallery" assign="murl"}
{if isset($_items)}
<div class="container">
        {foreach from=$_items item="item"}
{if $item@iteration == 1 || $item@iteration == 5 || $item@iteration == 9}
    <div class="row">{/if}
        <div class="col3{if $item@iteration == 4 || $item@iteration == 8 || $item@last} last{/if}">
            <div class="img-profile">
                <a href="{jrGallery_get_gallery_image_url item=$item}" title="{$item.gallery_alt_text}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item._item_id size="large" crop="auto" class="iloutline img_scale" alt=$item.gallery_image_name title=$item.gallery_alt_text}</a><br>
            </div>
            <div class="center mb10">
                <a href="{jrGallery_get_gallery_image_url item=$item}" title="{$item.gallery_alt_text}" class="bold">{if isset($item.gallery_image_title)}{$item.gallery_image_title|truncate:30:"...":false}{else}{$item.gallery_image_name|truncate:30:"...":true}{/if}</a><br>
                <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item.gallery_title_url}/all" class="media_title">{$item.gallery_title}</a><br>
                <a href="{$jamroom_url}/{$item.profile_url}" style="margin-bottom:10px"><span class="capital">@{$item.profile_url}</span></a>
            </div>
        </div>
{if $item@iteration == 4 || $item@iteration == 8 || $item@last}
	</div>
{/if}
        {/foreach}
</div>
{/if}
{/literal}
{/capture}

<div class="block">

    <div class="title">
        {jrSearch_module_form fields="gallery_title,gallery_image_title,gallery_caption,gallery_description,gallery_image_name"}
        <h1>{jrCore_lang module="jrNingja" id=36 default="Images"}</h1>
    </div>

    <div class="block_content">
        <div class="item">
            <div class="container">
                <div class="row">
                    {jrCore_list module="jrGallery" order_by="_updated numerical_desc" require_image="gallery_image" pagebreak=12 page=$_post.p pager=true template=$tpl}
                </div>
            </div>
        </div>
    </div>

</div>

{jrCore_include template="footer.tpl"}

and let me know if that fixes it.

Thanks!
douglas
@douglas
01/01/15 07:35:39AM
2,812 posts

Image Galleries - Suppress gallery name/length, order by


Ning To Jamroom

A clearing div won't help. The problem is the title is too long and takes up space for the next image, so it gets pushed down.

I seen this before and the only solution was to shorten the title.

Thanks!
  182