solved How can I lower the bottom so that chat doesn't cover the up button?

perrie
@perrie
8 years ago
435 posts
I just had the new version of cometchat installed on my site and it is now covering the bottom of the page, where the up button is. How do I move the bottom so that it is visible? I am assuming that it must be done in the templates, but which one, and what should the code be?
updated by @perrie: 02/20/17 07:08:04PM
douglas
@douglas
8 years ago
2,790 posts
Hello,

You'll most likely need to modify your footer.css file... in your skins/YOURSKIN/css/footer.css file find this:

.scrollup{
    width:40px;
    height:40px;
    opacity:0.5;
    position:fixed;
    bottom:10px;
    right:65px;
    display:none;
}

and change it to this:

.scrollup{
    width:40px;
    height:40px;
    opacity:0.5;
    position:fixed;
    bottom:40px;
    right:65px;
    display:none;
}

Hope this helps!


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
perrie
@perrie
8 years ago
435 posts
Hi Doug,
My coding looks nothing like what you have above. Here is what I have in the footer template:

Scroll



{if isset($css_footer_href)}
{foreach from=$css_footer_href item="_css"}

{/foreach}
{/if}
{if isset($javascript_footer_href)}
{foreach from=$javascript_footer_href item="_js"}

{/foreach}
{/if}
{if isset($javascript_footer_function)}

{/if}
perrie
@perrie
8 years ago
435 posts
OK for some reason I can't copy it into this reply, so I will have to send it as an attachment.
michael
@michael
8 years ago
7,714 posts
footer.css file... in your skins/YOURSKIN/css/footer.css

You're posting the file: /skins/YOURSKIN/footer.tpl

wrong file, it will look right in the right file. Give it another go.
perrie
@perrie
8 years ago
435 posts
Thanks Doug and Michael... I got the job done! :)