Forum Replies Created

Viewing 20 posts - 4,221 through 4,240 (of 4,908 total)
  • Author
    Posts
  • in reply to: Landscape Iphone View #86756
    Mahesh
    Participant

    Hi @husker,

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

    @media screen and (max-width: 640px) {
        #featured-content.layout-four .hentry, #featured-content.layout-three .hentry {
        	width: 100%;
        }
      }

    Let me know if this fixes your issue.

    Regards,
    Mahesh

    in reply to: number of featured contents on homepage #86754
    Mahesh
    Participant

    Hi @pulsedata,

    We will be changing limit from the max featured content 20 to 24 in the next update. Hope it will fix your problem. Please wait for the next update. Thank you for your patience.

    Regards,
    Mahesh

    in reply to: spacing between gaps #86753
    Mahesh
    Participant

    Hi @leoibra,

    Can you please clarify more showing the issue with the site link or image.

    Regards,
    Mahesh

    in reply to: custom css confusion #86752
    Mahesh
    Participant

    Hi @somethingelse,

    For overriding theme style, you can use theme’s Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add your desired CSS.
    Regenerating new version of page? no its not possible with CSS. May be some plugins is creating the issue. Please try deactivating the plugins and check if it fixes the issue.
    Can you please clarify more on the issue with your site url.

    Regards,
    Mahesh

    in reply to: Menu and Child Menu background Color Across Devices #86749
    Mahesh
    Participant

    Hi @husker,

    Just to let you know that the updated version ( Catch Responsive 2.4 ) is now available in WordPress.org. Its 2.4 not 3.4, sorry for the typo.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Insert image and set featured image not longer working #86707
    Mahesh
    Participant

    Hi @meekglorious,

    Seems you are using Simple Catch Pro, thank you. You posted the support in Catch Responsive Pro’s thread, post the support in relative theme’s thread.
    You aren’t able to upload images to the post, what error do you get? Please clarify more so we could help you.
    Are you using any plugins? If yes try disabling it all one by one and check if it solves the issue. And you are using a child theme, do you get the same problem with parent theme too?
    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Menu and Child Menu background Color Across Devices #86705
    Mahesh
    Participant

    Hi @husker,

    The issue has been fixed in the updated version Catch Responsive 3.4 and is now available in WordPress.org. Please update to the latest version and remove the above CSS fixation.
    Thanks for letting us know the issue.

    Regards,
    Mahesh

    in reply to: Backup of theme setttings #86699
    Mahesh
    Participant

    Hi @webmasterpzv,

    For making backup of theme setting, you can use the Customizer Export Import plugin from WordPress.org:
    https://wordpress.org/plugins/customizer-export-import/

    Regards,
    Mahesh

    in reply to: image in Promotion headline doesn't response on mobile #86695
    Mahesh
    Participant

    Hi @pg,

    For responsive image, you’ll need modify background-size property in the above code. Change the code background-size : cover to background-size: contain so it would look like following:

    #promotion-message .section {
    	background-image   : url("http://mattfurniture.co.uk/wp-content/uploads/2016/02/matt-furniture-logo-rex.png")  !important;
    	background-position: center center;
    	background-repeat  : no-repeat !important;
    	background-size    : contain;
    }

    With this change, the background image will be a bit smaller than what it is now, and it will be responsive.

    Regards,
    Mahesh

    in reply to: Can't Set Certain Font Colors #86694
    Mahesh
    Participant

    Hi @dschwartzer,

    Seems that you have modified some code in theme’s style.css.

    strong, b {
        color: #666;
        font-weight: bold;
    }

    The color properties in the above line is causing the issue. I checked Simple Catch theme’s default style.css. It doesn’t have that color rule.
    In your site, you’ve set the color for the text to #000000 and its displaying fine in the source <span style=”color: #000000;”> but within the span there is a strong/b tag which is applying the above CSS rule from. That is why the text in <h2> tags are always grey.
    Hope this help to resolve your issue.

    Regards,
    Mahesh

    in reply to: Chang Logo www.robenequine.co.uk #86664
    Mahesh
    Participant

    Hi @allan,

    The settings to change logo is as you’ve mentioned, but you can do it with customizer too, go to “Dashboard=> Appearance=> Customize=> Site Identity” And change Header Logo. Make sure Check to Disable Header Logo is unchecked.
    Do you get any error so something? What is being displayed in place of logo after you’ve changed the logo in theme options.

    Regards,
    Mahesh

    in reply to: Menu and Child Menu background Color Across Devices #86651
    Mahesh
    Participant

    Hi @husker,

    Use following CSS for scroll issue.
    body.sidr-open { position: fixed !important; }
    Note: Currently in your site, you have menu in the right position and you have to scroll to right to close the menu, after adding above CSS, you won’t be able to scroll the page when the menu is open (only the menu is scrollable). So please move the menu icon from right to left.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Menu and Child Menu background Color Across Devices #86647
    Mahesh
    Participant

    Hi @husker,

    I checked the menu in mobile and it seems to be issue in iPhone only. I tried the site with android too but it worked normally. The issue seem to be due to the Sidr jquery plugin, that the theme uses for mobile menu. We are trying to resolve the issue.
    If you want to make font size smaller, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” and add the following CSS:

    .sidr ul li, .sidr ul li:hover {
        line-height: 35px;
    }
    .sidr ul li ul li, .sidr ul li ul li:hover {
        line-height: 30px;
    }
    .sidr {
    	font-size: 12px;
    }

    In the above CSS, I’ve reduced the spacing for the menu too.

    Regards,
    Mahesh

    in reply to: Update causing issues #86645
    Mahesh
    Participant

    Hi @ifyouneedadj,

    The update should not have created that issue. And was the theme update successful? Is the updated theme running fine?
    As you’ve said, working with child theme, you just have to update the parent theme and everything would be fine. You are correct.
    While updating the site, the changes you’ve set and seen in the customizer should reflect in the frontend as well. I assume you’ve clicked save after your customization.
    Let me know if I can help you further.
    Please post in your site url and email us your child theme(zip) so we can check the problem.

    Regards,
    Mahesh

    in reply to: Can't Set Certain Font Colors #86644
    Mahesh
    Participant

    Hi @dschwartzer,

    The color applied in visual editor will visible in visual editor page and the post single page. The blog list page only displays the excerpt of the blog and all the html and style are removed here and texts are displayed with default colors. If you set the theme colors to default, edit a post and change some colors in the content and view the post then you would see the color as you’ve applied right?
    If you want display the post list with style applied in visual editor, you’ll need to display full content instead of excerpt (you’ll need to do some code customization).
    Hope you understand.
    Let me know if I can help you further.

    Regards,
    Mahesh

    in reply to: Different Featured Header Image #86642
    Mahesh
    Participant

    Hi @disaj,

    The featured you’re seeking is available in Catch Kathmandu Pro. With this feature, you can have different header images for different pages and posts. The featured image set in pages and posts will be displayed as the header image. If page/post doesn’t have featured image set, default header image is used. I recommend you to upgrade to Pro version. Please check the link below:
    https://catchthemes.com/themes/catch-kathmandu-pro/

    Regards,
    Mahesh

    in reply to: Page Width #86601
    Mahesh
    Participant

    Hi kensevenoaks,

    By default, the width for primary content and sidebar is 770px and 360px respectively. Theme can be adjusted with Custom CSS. No, there is no such feature in Pro version. But the Pro version does have two more layout option “No Sidebar (Full Width)” and “No Sidebar (One Column)”. You can find more details about theme features in the following link:
    https://catchthemes.com/themes/adventurous-pro/
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: www.robenequine.co.uk #86597
    Mahesh
    Participant

    Hi allan,

    For appending widget in the bottom footer, you have to do some code customization and style customization too ( For customization please use child theme, you can find more details on creating child theme HERE ).
    In Simple Catch Pro, you can customize the footer content as per you desired. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Footer Options” and edit content in Footer Editor.

    Regards,
    Mahesh

    in reply to: Change color of homepage featured content titles #86585
    Mahesh
    Participant

    Hi @spike,

    You can achieve it with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
    For changing the main title of Featured Content:

    #featured-post #feature-heading {
        color: #00ff00;
    }

    For changing the titles of post in Featured Content:

    #featured-post .entry-title a {
        color: #ff0000;
    }

    Regards,
    Mahesh

    in reply to: Menu and Child Menu background Color Across Devices #86581
    Mahesh
    Participant

    Hi @husker,

    In the above code, the following line will make your menu link #fff

    #header-left-nav li.menu-item > a {
        color: #fff;
    }

    And following line will make your sub menu link #bbbbbb

    #header-left-nav li.menu-item ul.sub-menu li {
          background-color: #bbbbbb;
    }

    In your site, I didn’t see the above styles. May be that is why the color is not #fff.

    Regards,
    Mahesh

Viewing 20 posts - 4,221 through 4,240 (of 4,908 total)