Print

Advanced Customization

This article provides custom CSS that can be used to alter the appearance or behavior of specific elements on the Help Dialog. It is important to note that it is always recommended to back up your website before making any changes, and it is advisable to seek the assistance of a professional when making CSS adjustments. Please use caution and exercise due diligence when implementing custom CSS to ensure that your Help Dialog functions as intended.

Is it possible to customize the distance of the dialog from the bottom of the screen on mobile devices. 

CSS
/* 
Changes the 30 value to your desired height
Change the --1 value to the widget number to target if you have mulitple widgets. 
Change the 480 value to your desired mobile width.
*/
@media only screen and (max-width: 480px) {
  .ephd-hd-toggle.ephd-widget--1 {
    bottom: 30px !important;
  }
}
CSS
/* 
Hide Dialog on Mobile 
Change the --1 value to the widget number to target if you have mulitple widgets. 
Change the 480 value to your desired mobile width
*/

@media only screen and (max-width: 480px) {
  .ephd-hd-toggle.ephd-widget--1 {
    display:none !important;
  }
}
Was this article helpful?
0 out Of 5 Stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
Was this article helpful?
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.
Need help?
Table of Contents