Forum Activity for @douglas

douglas
@douglas
05/15/24 01:24:04PM
2,791 posts

Celebrity Skin Issue with images


Design and Skin Customization

Can you send us your admin login so we can check it out?

send to support[at]jamroom[dot]net

Thanks!
douglas
@douglas
05/15/24 01:17:41PM
2,791 posts

Cover Image Issue


Design and Skin Customization

Those images are 1280px for the width and 320px for the height.
douglas
@douglas
05/15/24 06:14:47AM
2,791 posts

Celebrity Skin Issue with images


Design and Skin Customization

Can you let us know the URL to the site?

Thanks!
douglas
@douglas
05/15/24 06:14:00AM
2,791 posts

Cover Image Issue


Design and Skin Customization

Do you have a link were we can see the issue?

Thanks!
douglas
@douglas
03/28/24 08:16:18AM
2,791 posts

Beatslinger2 in dark mode :)


Design and Skin Customization

Unfortunately, the skin CSS files are incompatible with other skin CSS files.

I'll look into creating a dark CSS file for Beatslinger2
douglas
@douglas
02/27/24 08:48:55AM
2,791 posts

JR mp3 conversion bitrate bitrate


Using Jamroom

In your ACP > Profiles > Audio > Quota Config tab.

/audio/admin/quota

Hope this helps!
douglas
@douglas
02/10/24 04:24:32AM
2,791 posts

adding another level to bottom tab (followme2) skin


Design and Skin Customization

What mobile device are you using?

It may look different on other devices.

The image I posted was a screenshot from a Samsung Galaxy S20.
douglas
@douglas
02/09/24 01:53:27PM
2,791 posts

adding another level to bottom tab (followme2) skin


Design and Skin Customization

This is what I see.

Which by the code posted, it is correct.

How are you wanting it to look?

Thanks!
followme2_mobile_view_020924.jpg followme2_mobile_view_020924.jpg - 167KB
douglas
@douglas
02/09/24 06:50:37AM
2,791 posts

adding another level to bottom tab (followme2) skin


Design and Skin Customization

Without seeing the actual code it is going to be difficult to tell what is going on.

Can you share the URL or post the code for the template in between the BBCode code tags so we see something like this:

<div class="bottom_tab">
    <div class="table">
        <div class="table-row">
            {if $page_template == "index"}
                {$tactive = "active"}
            {/if}
            <div class="table-cell {$tactive}">
                <a href="{$jamroom_url}">{jrCore_icon icon="clock" size="24" color="6482B4"}</a>
            </div>
            {if $_post.profile_actions == 'feedback'}
                {$eactive = "active"}
            {/if}
            <div class="table-cell {$eactive}">
                {jrCore_module_url module="jrAction" assign="tUrl"}
                <a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}/{$tUrl}/feedback" title="{jrCore_lang skin="jrFollowMe2" id=149 default="Feedback"}">
                    {jrCore_icon icon="notifications" size="24" color="6482B4"}
                    <span class="count feedback_count">0</span>
                </a>
            </div>
            {if $_post.profile_actions == 'mentions'}
                {$mactive = "active"}
            {/if}
            <div class="table-cell {$mactive}">
                <a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}/{$tUrl}/mentions" title="{jrCore_lang skin="jrFollowMe2" id=19 default="Mentions"}">
                    {jrCore_icon icon="mention" size="24" color="6482B4"}
                    <span class="count mentions_count">0</span>
                </a>
            </div>

            {if $_post.option == "follow"}
                {$factive = "active"}
            {/if}
            <div class="table-cell {$factive}">
                <a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}/{jrCore_module_url module="jrFollower"}" title="{jrCore_lang skin="jrFollowMe2" id=18 default="Followers"}">
                    {jrCore_icon icon="followers" size="24" color="6482B4"}
                    <span class="count followers_count">0</span>
                </a>
            </div>
            <div class="table-cell" id="menu_button">
                <a href="#">
                    {jrCore_icon icon="menu" size="24" color="6482B4"}
                </a>
            </div>
        </div>
    </div>
</div>
douglas
@douglas
02/09/24 06:17:01AM
2,791 posts

adding another level to bottom tab (followme2) skin


Design and Skin Customization

I would say it is because the height for that section is set to 40px in the skin.css file. If you want to add another row, you may have to change the height too.

Hope this helps
  3