• Hi,

    My website is on Colormag theme and also use Elementor and all of a sudden footer of my website is appearing on top of the site and not at the right place. I did not make any change to the footer still this error happened.

    Can someone pls help address this.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @professionaltrail,

    I can not see the error you are facing with your website related to footer.

    Please check again and let me know.

    Thanks,
    Kratinjay

    Thread Starter professionaltrail

    (@professionaltrail)

    Hi,

    Here is the image of the error I am referring to-

    Hey @professionaltrail,

    Thanks for reaching out about this issue! It sounds like the problem might be related to the CSS styling for the .cm-row element. Luckily, this can often be fixed with a quick custom CSS tweak.

    Here’s the code you can add to fix the height issue:

    .cm-row {
      height: unset !important;
    }

    This code removes any set height for the .cm-row element, allowing it to adapt to its content.

    To add this custom CSS in WordPress, you have a couple of options:

    1. Using the Theme Customizer: Many themes offer a built-in theme customizer where you can add custom CSS. Navigate to Appearance > Customize > Additional CSS and paste the code there.
    2. Using a Plugin: Several plugins like “Simple Custom CSS” allow you to add custom CSS snippets without modifying theme files. Install and activate the plugin, then paste the code into the designated area.
    3. Editing the theme’s stylesheet (Advanced): If you’re comfortable with code, you can directly edit the theme’s stylesheet (style.css). Find the file in your theme’s directory (usually wp-content/themes/your-theme/) and add the code at the bottom.

    Important Note: Editing theme files directly can be overwritten during theme updates. Consider using a child theme for custom CSS if you plan on modifying the theme frequently.

    Let me know if you have any trouble implementing this fix, or if you’d like some guidance on creating a child theme.

    Thread Starter professionaltrail

    (@professionaltrail)

    This worked. Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.