Forum Replies Created

Viewing 20 posts - 3,101 through 3,120 (of 4,908 total)
  • Author
    Posts
  • in reply to: New update #96854
    Mahesh
    Participant

    @zerolizer0:
    Hi Casper:

    Please check this link:
    https://catchthemes.com/changelogs/adventurous-pro-theme/

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #96849
    Mahesh
    Participant

    @helpme: Did you put the link in the following format?
    <a href="some_link_to_QVC">QVC</a> should have worked fine as the link for Greenworks is working. Do you get any error or something? Try changing the theme to default WordPress theme and try to do the same and check if it works.

    Regards,
    Mahesh

    in reply to: Select Featured Content #96848
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Blog/ Posts Page Appearance #96847
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: resize logo in header #96846
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Sidebar on only one page #96800
    Mahesh
    Participant

    @sarahf: You can use different layout for different pages. For that go to Add/Edit Page you want to change layout. Then scroll down to Catch Box Options and select your desired option (No Sidebar) in Sidebar Layout Options and then click Publish/Update.

    Note: Same can be done with Posts too.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Catch Box Theme: Remove Header Padding/Margins #96797
    Mahesh
    Participant

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

    #site-generator .powered {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Select Featured Content #96796
    Mahesh
    Participant

    @rollik: You can do that with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .home #content {
        display: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Link in the footer #96795
    Mahesh
    Participant

    @mayapour: The code is working fine. May be cache/transient problem. Please uncomment //catchresponsive_flush_transients(); line in the above code and check again. Please comment the line again.

    Regards,
    Mahesh

    Mahesh
    Participant

    @stefanhoesli: Thanks, I checked your site. As for now, you have used text area widget to put the code that customized with inline CSS. So do you mean to customize the whole Primary Sidebar for different background color and text colors? Let me know so I can help you further.

    Regards,
    Mahesh

    in reply to: Link in the footer #96777
    Mahesh
    Participant
    in reply to: Problems adding links to other web pages #96776
    Mahesh
    Participant

    @helpme: Sorry, I don’t quite get you there. Can you please clarify more where actually you want this so that I can help you further.

    Regards,
    Mahesh

    in reply to: resize logo in header #96774
    Mahesh
    Participant

    @luci1708:
    Hi Luci,

    This can be done with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #masthead.fixed-header #site-logo img {
        max-height: 75px;
    }

    Note: Please adjust the height in the above code as you desire.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Change menu bar color #96773
    Mahesh
    Participant

    @petermilliken:
    Hi Peter,

    I guess your site is https://wildwesttours.co.uk/. For changing primary menu background color, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .nav-primary {
        background-color: #2e3192;
    }

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Remove page title and change mobile view page width #96772
    Mahesh
    Participant

    @lmkele: Sorry, little issue in code, please add the following instead.

    .post-type-archive-product .page-title, 
    .woocommerce-breadcrumb {
        display: none;
    }
    
    #catchflames-woocommerce.hentry .products{
        margin: 0;
    }
    
    .page-description img.alignleft.wp-image-1298.size-full {
        display: block;
        float: none;
        margin: 0 auto;
    }
    
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*="columns-"] ul.products li.product, .woocommerce[class*="columns-"] ul.products li.product {
        margin-bottom: 1.5em;
    }
    
    @media screen and (max-width: 540px) {
        .wrapper, 
        #site-generator .wrapper {
            padding-left: 0;
    	padding-right: 0;
        }
    
        #catchflames-woocommerce.hentry {
            padding: 10px;
            margin: 0;
        }
    }

    Note:
    1. home/shop will also be hidden with the above code.
    2. Please turn responsive design.

    Re the note on responsive, i couldn’t locate the empty <p> tags, please can you advise where they in the description for me to remove?
    -> Go to the page and edit it, then in content, go to text tab, you may see two <p> </p> tags at the end, remove it and save it.

    Re the original page title issue – yes i think ‘Shop’ has now gone but i wanted to get rid of the page navigation on the shop page to not have the ‘home/shop’ at the top of the page, is there a way to remove this?
    -> Above CSS will remove this.

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Adjusting Font size in Featured Content #96771
    Mahesh
    Participant

    @petermilliken: The one that you are concerned is in catch-responsive-pro/inc/catchresponsive-menus.php file’s line 29. Since it is using assistive-text class it is not visible. If you do want to remove it, you’ll need to overried catchresponsive_primary_menu function with child theme and remove the <h1> tag.

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Full Frame Theme Spam Links #96770
    Mahesh
    Participant

    @danafontaine: Sorry, but there has been a big confusion here because of the same name. Full Frame you are using is by Graph Paper Press. I didn’t notice at the beginning. Please contact Graph Paper Press support for the issue.

    Regards,
    Mahesh

    in reply to: Blog/ Posts Page Appearance #96769
    Mahesh
    Participant

    @nicolegariepy: I checked your site and found the issue. You have the following CSS

    .entry-title {
        display:none;
    }

    in your custom CSS at the very end which is causing the problem. Please find and remove it, and you issue will be fixed.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #96767
    Mahesh
    Participant

    @catwingz: The problem that you have blank post in above reply is you have put the <a> tag but nothing to display in it. I checked your site but didn’t see any issue, may be I missed it. Can you please tell me in which page is the problem is actually ocurring? (page with problem – url)

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #96765
    Mahesh
    Participant

    @jonfloridaabodes-com: Sorry for the late reply. What seems to be the problem? Can you please clarify more so that we can help you.

    Regards,
    Mahesh

Viewing 20 posts - 3,101 through 3,120 (of 4,908 total)