Forum Replies Created

Viewing 20 posts - 1,481 through 1,500 (of 4,903 total)
  • Author
    Posts
  • in reply to: Footer text #108250
    Mahesh
    Participant

    @candice: You’ll need to remove/modify the function that displays the footer code through child theme (create_footer_info in create/inc/core.php). If you are not familiar with coding. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Why the theme Catch Responsive is not in Responsive Design? #108249
    Mahesh
    Participant

    @olaf: Its not gonna work like that since the problem is in the CSS code. You’ll need to find the particular CSS code causing the issue and remove it. Hope you understand. Let me know if I can help you further.

    Regards,
    Mahesh

    in reply to: How to Remove Arrows #108248
    Mahesh
    Participant

    @tosgood: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Social Icons Header Right #108247
    Mahesh
    Participant

    @qetellocaro: Please disable coming soon plugins. Need to check in your site.

    Regards,
    Mahesh

    in reply to: Move Site title and tagline over header image #108246
    Mahesh
    Participant

    @lba14525: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Font sizes changed outside of admin mode #108245
    Mahesh
    Participant

    @cableman145: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Catch Responsive Mobile width and Color Footer RSS #108244
    Mahesh
    Participant

    @landhauskunst: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:

    /* Post title color */
    .entry-title a {
        color: #ff00ff;
    }
    /* RSS color */
    .rsswidget {
        color: #ff00ff;
    }

    The issue on mobile view, I think its because of some custom CSS or plugins. Please check your Custom CSS or try disabling plugins and check again.
    No such issue on our server. Please check our demo.
    https://catchthemes.com/demo/catch-responsive/

    Regards,
    Mahesh

    in reply to: Insecure style sheet #108242
    Mahesh
    Participant

    @petermilliken: Seems like its from one of the plugins. Please try disabling the plugins one by one and check if the issue is resolved. The theme does not use Raleway font.

    Regards,
    Mahesh

    in reply to: catch-base-pro.3.8 – #108241
    Mahesh
    Participant

    @kartina: For blog posting, go to Dashboard=> Posts=> Add Post. For Categories, Go to Dashboard=> Appearance=> Posts=> Category then add Category.
    To add widgets, go to Dashboard=> Appearance=> Widget and Add Categories widget.
    Let me know if any problem. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Sidebar Widget Text Color Not Changing #108240
    Mahesh
    Participant

    @caulon: I checked the same on our server and everything is working. Widget title color is changing. May be the issue is because of caching. Please make sure that you don’t have any custom CSS overriding the widget text color.

    Regards,
    Mahesh

    in reply to: Logo Image Not Displaying #108236
    Mahesh
    Participant

    @blantonlaura: Just to let you know that the bug is fixed and the update has been released. Please update. Have a nice day!

    Regards,
    Mahesh

    in reply to: Why the theme Catch Responsive is not in Responsive Design? #108154
    Mahesh
    Participant

    @olaf: Well it depends on what changes you’ve made. I guess you’ve put it in style.css. What changes actually have you made? If you have’t made much changes in designs, I recommend you to get rid of all the styles from child theme styles.css. and just keep the functionality. It will fix your issue. Solving the issue after making child theme seems to be almost impossible cause we won’t know which change or customization is causing such issue. Hope you understand.
    If possible, try creating a fresh child theme and customize it one by one checking frontend that it won’t break the responsive design.

    Regards,
    Mahesh

    in reply to: Why the theme Catch Responsive is not in Responsive Design? #108151
    Mahesh
    Participant

    @olaf: Well, you’ll need to remove the CSS that makes the theme fixed width. You can keep the other modifications. Just the width fixing CSS is causing the issue.

    Regards,
    Mahesh

    in reply to: Width of the Main Content Area #108150
    Mahesh
    Participant

    @bowloftreat: Full width feature is available in Catch Responsive Pro. I recommend you to upgrade to Pro. If you want to make full width in free version, can be done with Custom CSS. I can help you with this. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Need to understand your design philosophy …. #108149
    Mahesh
    Participant

    @novaglenn: Add a widget to footer and then add the following CSS:

    #supplementary {
        display: none;
    }
      
    .home #supplementary {
        display: block;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @haralanov: For full reset, go to Dashboard=> Customize=> Reset All Settings and check Check to reset all settings to default and save and refresh. We’ll need to check your server for the issue. We’ll contact you via email shortly.

    Regards,
    Mahesh

    in reply to: Link to pages from homepage slider #108143
    Mahesh
    Participant

    @luigibella: Just checked your site, and the code is working fine. Nothing happens when you click the image in the slider in the homepage as you’ve mentioned. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: I cannot access my website – I changed function.php file #108142
    Mahesh
    Participant

    @cmorales01: Glad to know that you’ve solved your issue by yourself.

    Regards,
    Mahesh

    in reply to: News Ticker Options? #108141
    Mahesh
    Participant

    @jessi: Go to Dashboard=> Appearance=> Customize=> News Ticker and change Enable News Ticker on option to Homepage/Frontpage or Entire Site as per you requirement then some options will slide down. Then you can select the Ticker type from Select Ticker Type option.
    These options won’t be visible if Disabled is selected in Enable News Ticker on option.
    Hope you understand. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Move Site title and tagline over header image #108140
    Mahesh
    Participant

    @lba14525: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #branding .wrapper {
        position: relative;
    }
    
    #header-content{
        position: absolute;
        top: 0;
        margin-top: 20px;
    }
      
    @media screen and (max-width: 990px) {
        #site-title {
            font-size: 45px;
            line-height: 45px;
        }
        #site-description {
            font-size: 25px;
            line-height: 25px;
        }
        
        #site-details {
            margin-top: 75px;
            margin-left: 20px;
        }
    }
      
    @media screen and (max-width: 767px) {
        #site-details {
        	text-align: left;
        }
        #site-details {
            margin-top: 45px;
        }
    }
      
    @media screen and (max-width: 700px) {
        #site-title {
            font-size: 35px;
            line-height: 35px;
        }
        #site-description {
            font-size: 20px;
            line-height: 20px;
        }
        
        #site-details {
            margin-top: 20px;
        }
    }
      
    @media screen and (max-width: 540px) {
        #site-title {
            font-size: 25px;
            line-height: 25px;
        }
        #site-description {
            font-size: 15px;
            line-height: 15px;
        }
    }
      
    @media screen and (max-width: 480px) {
        #site-title {
            font-size: 25px;
            line-height: 25px;
        }
        #site-description {
            font-size: 15px;
            line-height: 15px;
        }
        #site-details {
            margin-top: 10px;
        }
    }
      
    @media screen and (max-width: 400px) {
        #site-title {
            font-size: 22px;
            line-height: 22px;
        }
        #site-description {
            font-size: 14px;
            line-height: 14px;
        }
        #site-details {
            margin-top: 0;
          margin-left: 5px;
        }
    }

    Regards,
    Mahesh

Viewing 20 posts - 1,481 through 1,500 (of 4,903 total)