Forum Replies Created

Viewing 20 posts - 401 through 420 (of 14,495 total)
  • Author
    Posts
  • Sakin
    Keymaster

    Hi Carey,

    I just check the Clean Education Pro theme and didn’t find any issues. Also, the file mentioned is from the WordPress core and not from the theme. So, there might be a plugin or configuration issue. Can you try deactivating the plugin and check it.

    Regards,
    Sakin

    in reply to: Divers #315840
    Sakin
    Keymaster

    Hi Heinz,

    Welcome and if you like the theme and our support then I have a quick request: could you please leave an honest review? https://wordpress.org/support/theme/catch-fse/reviews/#new-post. Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.

    Regards,
    Sakin

    in reply to: There are no demo files available in this theme #315822
    Sakin
    Keymaster

    Hi Galenfea,

    Welcome and if you like the theme and our support then I have a quick request: could you please leave an honest review? https://wordpress.org/themes/bold-photography/reviews/#new-post. Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.

    Regards,
    Sakin

    in reply to: Collumn block #315820
    Sakin
    Keymaster

    Hi Hermann,

    For the column block with the background color, you can adjust the padding as per your need in the following CSS and then add it in the “Appearance => Customize => Additional CSS” box:

    .wp-block-column.has-background { padding: 10px }

    Regards,
    Sakin

    in reply to: There are no demo files available in this theme #315819
    Sakin
    Keymaster

    Hi Galenfea,

    Please check the Theme Instructions tab on Theme Page at https://catchthemes.com/themes/bold-photography/#theme-instructions, from there you can download the demo file zip file.

    Regards,
    Sakin

    in reply to: Divers #315745
    Sakin
    Keymaster

    @henebe: I have processed the refund or the order ID: 311694 for the FSE Pro plugin. Have a nice day.

    in reply to: Divers #315632
    Sakin
    Keymaster

    @henebe: Yes, you purchased the FSE Pro plugin twice on January 11, 2023. So, do you want me to process the refund for the one?

    in reply to: Nav menu not showing on mobile #315631
    Sakin
    Keymaster

    @sfinnegan: For the Menu, you can change the font family with the following CSS:

    .create-menu a {
    	font-family: 'Century Gothic', sans-serif;
    }

    The Century Gothic is not a web font. So, if the font is not there in the device you are viewing then it will load the alternate san-serif font. That is what happens to your mobile devices.

    in reply to: Nav menu not showing on mobile #315619
    Sakin
    Keymaster

    @sfinnegan: As I told you, you just need to add the CSS that you want to change. So, looking at your changes. I have come up with the Custom CSS that you can replace. Please replace your Current CSS with the following CSS in the”Appearance => Customize => Additional CSS”:

    body {
        font: 16px/1.8 'Century Gothic', sans-serif;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Century Gothic', sans-serif;
        color: #1e6a97;
        font-weight: 600;
        line-height: 2.1;
    }
    
    a {
      color: #89813d;
    }
    
    a:hover,
    a:focus,
    a:active {
        color: #89813d;
    }
    
    .site-banner {
        background-color: #1e6a97;
        opacity: 0.96;
    }
    
    .main-navigation {
      background-color: #1e6a97;
    }
    
    .main-navigation ul ul a {
      background-color: #1c5f86;
      border-bottom: 2px solid #1f6a96;
    }
    
    .main-navigation .current_page_item > a,
    .main-navigation .current-menu-item > a, 
    .main-navigation .current_page_ancestor > a {
      color: #cfa205;
    }
    
    .create-menu a:hover,
    .create-menu a:focus {
        color: #89813d;
    }
    
    .site-title {
        font-size: 80px;
        font-family: 'Century Gothic', sans-serif;
        font-weight: 400;
    }
    
    .site-title a {
        color: #d6d2c4;
    }
    
    .site-title a:hover,
    .site-title a:focus {
        color: #d6d2c4;
    }
    
    .site-description {
        color: #d6d2c4;
        font-size: 50px;
        font-family: 'Allura', sans-serif;
        font-weight: 400;
        letter-spacing: 0.05em;
        text-transform: none;
    }
    
    .social-menu {
        background-color: #89813d;
    }
    
    .social-menu ul a {
        border: 3px solid #d6d2c4;
        color: #d6d2c4;
    }
    
    .social-menu ul a:hover,
    .social-menu ul a:focus {
        border-color: #1e6a97;
        color: #1e6a97;
    }
    
    .site-info {
      background-color: #1E6A97;
      opacity: 0.96;
      color: #d6d2c4;
    }
    
    @media screen and (max-width: 960px) {
        .site-title {
            font-size: xx-large; /* Plays nicely in all browsers */
        }
    
        .site-description {
            font-size: medium; /* Plays nicely in all browsers */
        }
    
        .create-menu ul {
            background-color: #1c5f86;
        }
    
        .dropdown-toggle {
            border-left: 2px solid #1f6a96;
        }
    
        .main-navigation a, .main-navigation ul ul li a {
            background-color: #1c5f86;
            border-bottom: 2px solid #1f6a96;
        }
    }

    Regards,
    Sakin

    in reply to: Home page section sidebar dropping below content #315607
    Sakin
    Keymaster

    Hi Glen,

    Can you update the theme to the latest version so that we both are testing in the same version? Yes, when I check your source, you do have a sidebar on the front page. Also, check you check your settings for “Default Layout” and “Homepage/Archive Layout” at the “Appearance => Customize => Theme Options => Layout Options”. So, that we can do the same in our test server to check for issues.

    For a quick fix with your layout, you can add the following CSS in the “Appearance => Customize => Additional CSS” box:

    @media screen and (min-width: 64em) {
    	.home.two-columns-layout .content-area {
    		float: left;
    		margin-right: -100%;
    		width: 70%;
    	}
    }

    Regards,
    Sakin

    in reply to: Nav menu not showing on mobile #315602
    Sakin
    Keymaster

    @sfinnegan: I just check your website and I see that you have added a lot of CSS code in the “Appearance => Customize => Additional CSS” box. You are supposed to add only what you want to edit and not all the CSS codes. That is the reason you are having issues. Please remove it and it will work fine.

    in reply to: Main text color Abletone Pro does not change on Safari #315323
    Sakin
    Keymaster

    @rustyrecords : Thanks for reporting the bug, we have just released the update to fix this issue. So, update the theme and it should work fine.

    in reply to: White Screen after updating to PHP 8.0 #315257
    Sakin
    Keymaster

    @n1tn4t: Please update the theme and it will support PHP 8.0

    in reply to: Mobile version #314838
    Sakin
    Keymaster

    Hi Anon,

    That is the normal mobile view. It’s not a good strategy to disable the mobile responsive view for the SEO purpose.

    Regards,
    Sakin

    in reply to: Mobile version #314732
    Sakin
    Keymaster

    Hi Anon,

    Can you send us your site URL and then we can check it?

    Regards,
    Sakin

    in reply to: Blakely Pro Instructions #314726
    Sakin
    Keymaster

    @raedylex: You got the wrong URL and it’s missing themes after catchthemes.com. So, it’s basically on the Theme page under the Theme Instructions tab at https://catchthemes.com/themes/blakely-pro/#theme-instructions

    Also, check out FAQ https://catchthemes.com/frequently-asked-questions/

    Sorry, we didn’t realize there was a link error in the theme customizer. We have fixed that in the new version. Thanks.

    in reply to: Focus Theme Demo #314665
    Sakin
    Keymaster

    @stephanies: you can also download the theme file from theme instructions at https://catchthemes.com/themes/izabel/#theme-instructions

    in reply to: Fatal error when updating to PHP 8 #314507
    Sakin
    Keymaster

    Thanks for the update and glad to hear that it’s working fine now.

    in reply to: Text disappears when screen is to wide #314464
    Sakin
    Keymaster

    thanks for your appreciation.

    in reply to: Can I update or do I need a child theme? #314382
    Sakin
    Keymaster

    Hi Amta,

    Please check the FAQ page at https://catchthemes.com/faq/how-do-i-upgrade-to-a-new-theme-version-if-i-have-modified-my-theme/ for installation instructions.

    Regards,
    SAkin

Viewing 20 posts - 401 through 420 (of 14,495 total)