Forum Replies Created

Viewing 20 posts - 41 through 60 (of 14,499 total)
  • Author
    Posts
  • in reply to: hamburger menu icon is not displayed #339367
    Sakin
    Keymaster

    Hello Sandra,

    Elementor is using an old version of Font Awesome. So for Font Awesome 4, you can add the following CSS:

    .widget_catchresponsive_social_icons a.font-awesome {
      font-family: "FontAwesome";
      font-weight: 400;
      font-size: 20px;
      line-height: 1;
    }

    Regards,
    Sakin

    in reply to: hamburger menu icon is not displayed #339361
    Sakin
    Keymaster

    Hello Sandra,

    I think you are looking for more icons. So, it’s better to use Font Awesome 6 in the above CSS as well.

    Can you add the following CSS for Social icons in “Appearance => Customize => Additional CSS” box

    .widget_catchresponsive_social_icons a.font-awesome {
      font-family: "Font Awesome 6 Brands";
      font-weight: 400;
      font-size: 20px;
      line-height: 1;
    }

    Regards,
    Sakin

    in reply to: hamburger menu icon is not displayed #339353
    Sakin
    Keymaster

    Hello Sandra,

    If you want to use the Font Awesome 4 which is there in Elementor then you can add following CSS in “Appearance => Customize => Additional CSS” box

    .mobile-menu-anchor .fa-menu:before {
      font-family: "FontAwesome";
    }

    But if you want to use the Font Awesome 6 which is there in the theme then you can add following CSS in “Appearance => Customize => Additional CSS” box

    .mobile-menu-anchor .fa-menu::before {
      font-family: "Font Awesome 6 Free";
    }

    Regards,
    Sakin

    in reply to: Mobile Web not responsing #339349
    Sakin
    Keymaster

    Hello @lolahentertainment,

    It looks like plugin issue. Can you check your WP Rocket and other cache plugin settings?
    Try this, go to “Settings => WP Rocket => File Optimization”
    * In CSS File settings, try unchecking “Optimize CSS delivery”
    * Same with JavaScript Files, check the settings

    Sakin
    Keymaster

    Hello Andreas,

    Sorry for the issue. We have fixed it in version 4.0.2. Please update and it should work fine.

    Regards,
    Sakin

    Sakin
    Keymaster

    Hello Juergen,

    I have deactivated the license key from your old site. Now, you can log in to your new site and activate the license key.

    In the future, you can deactivate the license from your account by yourself:

    1. First, log in to My Account page: Once you are on the My Account page, click on “View Licenses” and you will see your license details.
    2. Click on “Manage Sites” and you will see the site URL, then click on “Deactivate Site”.
    3. Then you can Install the license key on your Live Site.

    Regards,
    Sakin

    in reply to: Change the size of default font family #339191
    Sakin
    Keymaster

    Hi Laura,

    You can increase the font-size in the following CSS and add it in “Appearance => Customize => Additional CSS” box:

    @media screen and (max-width: 1024px) {
      body, button, input, select, textarea {
        font-size: 15px;
      }
    }

    Regards,
    Sakin

    in reply to: cannot change header pattern #339184
    Sakin
    Keymaster

    Hello Hans,

    I’m glad to hear that you found the solution. Closing this topic.

    Regards,
    Sakin

    in reply to: Link To A Specific Section of a Page? #339090
    Sakin
    Keymaster

    Hi Antonio,

    It’s a little technical to check the ID. Please refer to https://support.google.com/campaignmanager/answer/2828688?hl=en

    Regards,
    Sakin

    in reply to: Link To A Specific Section of a Page? #339083
    Sakin
    Keymaster

    Hi Antonio,

    You need to link the form using # ID. Please this as link

    https://weddingphotographymiami.com/contact-me/#QFBsDxT7HsQbjuv9M9kX

    Regards,
    Sakin

    in reply to: Photofocus Pro / Licencse renew and CSS for Header #339081
    Sakin
    Keymaster

    Hello @ute hieke: Yes, your theme license expired on June 23, 2024. So, you need to renew it to get an update. You can move the license key from the development site to the live site. Please check https://catchthemes.com/frequently-asked-questions/#question-installation-how-to-move-license-key-from-development-site-to-live-site

    in reply to: Crash Fullscreen and home page video #338945
    Sakin
    Keymaster

    But if you try to open the video link https://eximglobalsupply.com/wp-content/uploads/2025/01/cargo1.mp4, it says “404 Not Found”. So, try uploading on your server again.
    image not found

    in reply to: Desktop Hamburger Menu to Horizontal Menu #338942
    Sakin
    Keymaster

    Hello Antonio,

    Looks like you copy the DIV HTML code as well. You can find the raw CSS at https://gist.githubusercontent.com/sakinshrestha/2a8ef03ad182e5fefb4a4bbf2c176c08/raw/cff5b5f37dd1cd4010d67d6eac246c316e26b52a/style.css

    Copy the code from this link and add it to the “Appearance => Customize => Additional CSS” box. This code is the code for the Desktop menu for 1024px and above.

    Regards,
    Sakin

    in reply to: WooPayments credit card block not displaying #338922
    Sakin
    Keymaster

    @meg69: Please let me know your site URL and then I can check for issue

    in reply to: Woocommerce Description Tab #338891
    Sakin
    Keymaster

    Welcome and let me know if you have any other issues. Have a nice day.

    in reply to: Woocommerce Description Tab #338880
    Sakin
    Keymaster

    Hi Edwin,

    You can remove that box shadow by adding the following CSS:

    .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after,
    .woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
      box-shadow: none;
    }

    For Header Border Color, you can add the following CSS:

    #masthead {
      border-color: #eee;
    }

    For Header Border Color, you can add the following CSS:

    #colophon {
      border-color: #eee;
    }

    Regards,
    Sakin

    in reply to: Change Tagline Color #338877
    Sakin
    Keymaster

    Can you try the following CSS?

    #masthead .site-description {
      color: #fff;
    }
    in reply to: Woocommerce Description Tab #338876
    Sakin
    Keymaster

    Hello Edwin,

    That’s the active tab border color, if you don’t want it then make it the same as your background color. For that, just add the following CSS in the “Appearance => Customize => Additional CSS” box:

    .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
      border-bottom-color: #f7f7f7;
    }

    Regards,
    Sakin

    in reply to: Change Tagline Color #338872
    Sakin
    Keymaster

    Can you let me know your site URL and I will check it?

    in reply to: Change Tagline Color #338870
    Sakin
    Keymaster

    Hi,

    You can change the Header Text Color from “Appearance => Customize => Colors” which will change the color of both the Site Title and Tagline. But if you want to change the Tagline color then you can change the color code in the following CSS and add it in the “Appearance => Customize => Additional CSS” box:

    .absolute-header .site-description {
      color: #ffffff;
    }

    Regards,
    Sakin

Viewing 20 posts - 41 through 60 (of 14,499 total)