Making Hostbill's Modern Panel responsive, how?

Started by Hans82, April 24, 2014, 10:08:42 AM

Hans82

Hey guys,

I know it's a lot of work but I really want to make Hostbill's Modern Panel theme responsive. Does anyone in this forum know how this can be done? Or did someone already made it responsive?

I'm very interested!

Thanks!

Enterprisevpssolutions

Lots of code to make the changes you should just get the fluid panel theme it works pretty good for me https://enterprisevpssolutions.com/evdsportal/index.php/
Enterprise Vps Solutions (VPS) - Cloud Solutions, Shared hosting, VPS , and more, Fast Dedicated Servers. Great ssl prices SSL Certs, Follow us on Twitter. Sales Question? Contact us! Send us a Request Tampa , Florida Hivelocity Datacenter

Hans82

Quote from: Enterprisevpssolutions on April 26, 2014, 09:21:26 AM
Lots of code to make the changes you should just get the fluid panel theme it works pretty good for me https://enterprisevpssolutions.com/evdsportal/index.php/

It works for tablets, but not for iPhone / Android smartphones though... :(

Enterprisevpssolutions

I know I already submitted a bug report for it not sure if they will fix it anytime soon.
Enterprise Vps Solutions (VPS) - Cloud Solutions, Shared hosting, VPS , and more, Fast Dedicated Servers. Great ssl prices SSL Certs, Follow us on Twitter. Sales Question? Contact us! Send us a Request Tampa , Florida Hivelocity Datacenter

sysbitnet

Quote from: Hans82 on April 24, 2014, 10:08:42 AM
Hey guys,

I know it's a lot of work but I really want to make Hostbill's Modern Panel theme responsive. Does anyone in this forum know how this can be done? Or did someone already made it responsive?

I'm very interested!

Thanks!


If you not buy theme, include theme is not full responsive and you need to re-optimize or create new theme
If you want something to change your the better, start you thinking about how to do it . . .

Hans82

Quote from: SystemN on April 27, 2014, 10:58:29 PM

If you not buy theme, include theme is not full responsive and you need to re-optimize or create new theme

I would like to buy responsive version, but does someone where?

Enterprisevpssolutions

From hostbill you can purchase themes if you do not have a developer to do the code for you.
Enterprise Vps Solutions (VPS) - Cloud Solutions, Shared hosting, VPS , and more, Fast Dedicated Servers. Great ssl prices SSL Certs, Follow us on Twitter. Sales Question? Contact us! Send us a Request Tampa , Florida Hivelocity Datacenter

sysbitnet

If you want something to change your the better, start you thinking about how to do it . . .

Enterprisevpssolutions

Enterprise Vps Solutions (VPS) - Cloud Solutions, Shared hosting, VPS , and more, Fast Dedicated Servers. Great ssl prices SSL Certs, Follow us on Twitter. Sales Question? Contact us! Send us a Request Tampa , Florida Hivelocity Datacenter

BRJP

We have the same responsiveness issues as well with the new cloudy theme.  These scores are even worse than yours for both desktop and mobile.  Browser caching, enabling compression and render-blocking JavaScript gives Cloudy a 60 for desktop.
Kind regards,
Bradley Porter
--------------------
Find out more about SaneChoice Services at: https://www.sanechoice.cloud/

Enterprisevpssolutions

Browser caching, enabling compression are server issues not hostbill you just need to make sure you enable gzip compresses and setup your htaccess file to cache certain resources.

RewriteEngine on

# Turn on Expires and set default to 0
ExpiresActive On
ExpiresDefault A0

# Set up caching on media files for 1 year (forever?)
<FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">
ExpiresDefault A29030400
Header append Cache-Control "public"
</FilesMatch>
<IfModule mod_expires.c>
  ExpiresActive on

# Perhaps better to whitelist expires rules? Perhaps.
  ExpiresDefault                          "access plus 1 week"
 
<IfModule mod_headers.c>
  Header append Cache-Control "public"
</IfModule>
 
<IfModule mod_expires.c>
  ExpiresActive on
 
<IfModule pagespeed_module>
    ModPagespeed on
    # using commands,filters etc
</IfModule>

<ifModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript
</ifModule>

<IfModule mod_gzip.c>
    mod_gzip_on       Yes
    mod_gzip_dechunk  Yes
    mod_gzip_item_include file      \.(html?|txt|css|js|php|pl)$
    mod_gzip_item_include handler   ^cgi-script$
    mod_gzip_item_include mime      ^text/.*
    mod_gzip_item_include mime      ^application/x-javascript.*
    mod_gzip_item_exclude mime      ^image/.*
    mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>

a part of the htaccess file that will help with your issues.
Enterprise Vps Solutions (VPS) - Cloud Solutions, Shared hosting, VPS , and more, Fast Dedicated Servers. Great ssl prices SSL Certs, Follow us on Twitter. Sales Question? Contact us! Send us a Request Tampa , Florida Hivelocity Datacenter

BRJP

Thank you for the HTACCESS pointers.  Much Appreciated.
Kind regards,
Bradley Porter
--------------------
Find out more about SaneChoice Services at: https://www.sanechoice.cloud/