OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Problem with Company template CSS in Chrome (0 viewing) 

OrdaSoft template Support

Go to bottom Favoured: 0

Problem with Company template CSS in Chrome

helsinkisisu (User)
Junior Boarder
Posts: 22
graphgraph
User Offline Click here to see the profile of this user
Re:Problem with Company template CSS in Chrome 6 Years, 4 Months ago
Karma: 0  
This issue has to be specific to your IP or location because it doesn't exist here, and never has. I have temporarily replaced the htaccess file with the Joomla default to eliminate that as a possible cause.

Please try again. Force refresh the page. also try a non-Chrome browser if you haven't already.
Logged Logged
The administrator has disabled public write access.
helsinkisisu (User)
Junior Boarder
Posts: 22
graphgraph
User Offline Click here to see the profile of this user
Re:Problem with Company template CSS in Chrome 6 Years, 4 Months ago
Karma: 0  
OK, I think I have found what the issue is. This is covered in a ticket raised for a different product:

communities.bmc.com/docs/DOC-101247

And the Google bug report:
bugs.chromium.org/p/chromium/issues/detail?id=778873

Chrome 63 release date is schedule for tomorrow, 5/12.
Logged Logged
Last Edit: 2017/12/04 11:48 By helsinkisisu.
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8243
graph
User Offline Click here to see the profile of this user
Re:Problem with Company template CSS in Chrome 6 Years, 4 Months ago
Karma: 101  
Hello

Could you give to us
full FTP and admin access
and our team will try to find solution special for You, FTP and admin access You can send to our contact form.
ordasoft.com/contact-us-form


Link on website.

Detail description: How reproduce error. Step by step. Detail description: how we may reproduce this.

Site Admin

username
password

FTP

FTP host
FTP username
FTP password



Thanks,
Andrew
OrdaSoft team.
Logged Logged
The administrator has disabled public write access.
helsinkisisu (User)
Junior Boarder
Posts: 22
graphgraph
User Offline Click here to see the profile of this user
Re:Problem with Company template CSS in Chrome 6 Years, 4 Months ago
Karma: 0  
As this is a recognised Chrome bug, and the update due today is supposed to fix it, let's wait and see if it does.
Logged Logged
The administrator has disabled public write access.
helsinkisisu (User)
Junior Boarder
Posts: 22
graphgraph
User Offline Click here to see the profile of this user
Re:Problem with Company template CSS in Chrome 6 Years, 4 Months ago
Karma: 0  
OK, so the problem wasn't as listed in the previous Chrome bug report. However, it is another issue caused by jquery.portchecker.js.

bugs.chromium.org/p/chromium/issues/detail?id=793192

This points to this: github.com/dirkgroenen/jQuery-viewport-c...df9bf17739840c0eacf5

Following this fix, I altered this code:

Code:


        var $elem = this,
            windowSize = {height: $(window).height(), width: $(window).width()},
            scrollElem = ((navigator.userAgent.toLowerCase().indexOf('webkit') != -1) ? 'body' : 'html');

        /*
         * Main method that checks the elements and adds or removes the class(es)
         */
        this.checkElements = function(){
            var viewportStart, viewportEnd;

            // Set some vars to check with
            if(!options.scrollHorizontal){
                viewportStart = $(scrollElem).scrollTop();
                viewportEnd = (viewportStart + windowSize.height);
            }
            else{
                viewportStart = $(scrollElem).scrollLeft();
                viewportEnd = (viewportStart + windowSize.width);
            }



to this:

Code:


        var $elem = this,
            windowSize = {height: $(window).height(), width: $(window).width()};

        /*
         * Main method that checks the elements and adds or removes the class(es)
         */
        this.checkElements = function(){
            var viewportStart, viewportEnd;

            // Set some vars to check with
            if(!options.scrollHorizontal){
                viewportStart = Math.max(
                    $('html').scrollTop(),
                    $('body').scrollTop(),
                    $(window).scrollTop()
                );
                 viewportEnd = (viewportStart + windowSize.height);
             }
            else{
                viewportStart = Math.max(
                    $('html').scrollLeft(),
                    $('body').scrollLeft(),
                    $(window).scrollLeft()
                );
                 viewportEnd = (viewportStart + windowSize.width);
             }



I confirm that it fixes the problem. You may want to look at it and see if you wish to change anything (other than the template download).
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8243
graph
User Offline Click here to see the profile of this user
Re:Problem with Company template CSS in Chrome 6 Years, 4 Months ago
Karma: 101  
Thank you !!!
Logged Logged
The administrator has disabled public write access.
Go to top
»