Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Fixing WordPress
    In reply to: Critical Error

    You can troubleshoot it by accessing your cPanel, then navigating to File Manager, locating your site folder, and opening the wp-config.php file. From there, adjust the WP_DEBUG setting to true.

    define( 'WP_DEBUG', true );

    If you want to have glass effect you can use the below code.

    //to get the glass effect (transparent effect)//
    body{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }
Viewing 2 replies - 1 through 2 (of 2 total)