Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • I looked at the page you linked to and it looks like the issue is caused by a CSS media query. The media query is set to target screens that are 1200px or wider. When the screen width is less than 1200px, the media query is not triggered and the links do not appear.

    To fix the issue, you can either remove the media query or change the target width to something larger. If you remove the media query, the links will always appear, regardless of the screen width. If you change the target width, the links will only appear on screens that are wider than the specified width.

    Here is the code for the media query:

    @media screen and (min-width: 1200px) {
      .links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: red;
      }
    }
    

    You can remove this code or change the min-width value to something larger.

    I hope this helps!

    Thread Starter danitatsan

    (@danitatsan)

    Thanks

    It’s interesting that you found the recurring error even when the theme is inactive. Inactive themes usually shouldn’t affect your site’s functionality. The error you provided points to an issue in the “enzy” theme’s code related to a call to the is_empty() function. It seems like this function is not properly handling a null value, which could potentially lead to the intermittent loading problems you’ve described.

    Considering this, it might be a good idea to reach out to the theme’s support or development team to inquire about this specific error and whether it could cause the issues you’re facing. They might have insights on how to address this issue or if there’s a recent update that could resolve it.

    Also, regarding the “Cron reschedule event error” and the “Undefined offset: 1” notices, it’s worth looking into the respective plugins mentioned in those errors to ensure they are up to date and properly configured.

    Keep working closely with your theme’s support and reviewing your plugins to troubleshoot further. Hopefully, you’ll be able to resolve these issues soon. Good luck, and don’t hesitate to seek more assistance if needed! ???

    I’m sorry to hear that you’re experiencing a 403 error on specific pages in your WordPress admin panel. It seems like you’ve already taken steps to address a similar issue earlier. Since the problem persists on certain pages, it might be related to permissions or a server configuration issue.

    You could try checking your file and directory permissions, as well as your server’s mod_security settings. Additionally, make sure you’re using the latest version of WordPress and that your plugins and themes are up to date.

    If the issue continues, it might be a good idea to reach out to your hosting provider for further assistance, as they might be able to help you identify the root cause of the 403 error.

    It sounds like you’ve done thorough troubleshooting. Given the intermittent nature of the issue, it might be worth checking your hosting server logs and reaching out to Namecheap support to rule out any server-related issues. Cloudflare settings could also be a factor, so double-check those too. It’s good that you’ve explored plugins and themes as potential causes. Keep digging, and hopefully, you’ll pinpoint the root cause soon. Good luck! ???

    I understand your frustration, and I’m here to help. It seems you’re facing challenges with setting up your cover block. To achieve a full-width background image like the example you shared, you might need to explore custom CSS code.

    For the missing full-width option, it could be related to your theme or settings. If you’re comfortable with code, you can try adding the following CSS to your theme’s customizer:

    css Copy code

    .wp-block-cover { background-size: cover; }

    As for the tilting and compatibility issues, CSS can sometimes behave differently across browsers. To ensure consistent behavior, you might need to use browser-specific prefixes. For instance:

    css Copy code

    @supports (-webkit-backface-visibility: hidden) { /* Your tilting CSS code here */ }

    Remember to replace the comments with your actual CSS rules.

    Don’t hesitate to reach out if you need further assistance. We’re here to help you sort this out.

Viewing 6 replies - 1 through 6 (of 6 total)