Forum Replies Created

Viewing 20 posts - 3,141 through 3,160 (of 4,903 total)
  • Author
    Posts
  • in reply to: Title before primary menu #96429
    Mahesh
    Participant

    @carol-anne: This requires some customization. if you are familiar with coding, then I can help you with. If not, I recommend you to hire a customizer for this purpose.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Change color of Menu #96428
    Mahesh
    Participant

    @martijn: For that, add the following CSS:

    .main-navigation .current_page_item > a, 
    .main-navigation .current-menu-item > a, 
    .main-navigation .current_page_ancestor > a {
        color: #ff0000;
    }

    Hope this helps.
    Note: Please change the color as desired.

    Regards,
    Mahesh

    in reply to: Banners and links don't work #96427
    Mahesh
    Participant

    @accucomm:
    Hi Orlando,

    Glad to know that you’ve found what was causing the issue. Sometime the plugin do create problem. Have a nice day.

    Regards,
    Mahesh

    in reply to: Remove completely Catch Kathmandu Pro #96389
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Slider – remove links #96388
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Banners and links don't work #96375
    Mahesh
    Participant

    @accucomm: Have you tried it with default WordPress themes. If not please try it and check if it works with it or not.

    Regards,
    Mahesh

    in reply to: Remove completely Catch Kathmandu Pro #96374
    Mahesh
    Participant

    @moskito7:
    Hi Guillaume,

    There is an in-built option for this in the theme. Go to Dashboard=> Appearance=> Customize=> Reset All settings and check on Check to reset all settings to default and click Save & Publish. Then all your settings will be gone as new theme is installed.

    Regards,
    Mahesh

    in reply to: Promotion Header Title will not change colour #96370
    Mahesh
    Participant

    @petermilliken:
    Hi Peter,

    Sorry, there has been a small bug in the theme due to which the Promotion Headline Title color issue has arose. This has be fixed now in the new version which will be released soon. Thank you for your patience.
    For quick fix, you can use Custom CSS to change the color. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #promotion-message h2 {
        color: #ff0000;
    }

    Regards,
    Mahesh

    in reply to: Alternative Mobile Navigation? #96336
    Mahesh
    Participant

    @bmtt: Sorry, for this, you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: default sizes for main column and one sidebar #96335
    Mahesh
    Participant

    @skstewart: Go to Dashboard=> Apperance=> Customize=> Theme Optoins=> Custom CSS box and add the following CSS:

    #main {
        width: 920px;
    }
    .sidebar-primary {
        width: 240px;
    }
    
    @media screen and (max-width: 1280px) {
    	#main {
        	width: 820px;
        }
    }
    
    @media screen and (max-width: 1152px) {
    	#main {
        	width: 810px;
    	}
    	.sidebar-primary {
      		width: 200px;
    	}
    }
    
    @media screen and (max-width: 1100px) {
    	#main {
        	width: 750px;
    	}
    }
      
    @media screen and (max-width: 767px) {
    	#main {
        	width: 100%;
    	}
      .sidebar-primary {
        	width: 100%;
    	}
    }

    Regards,
    Mahesh

    in reply to: Error on featured content #96319
    Mahesh
    Participant

    @davidmcarthur:
    Hi David,

    The issue is because of a small typo. It should be esc_url() not esc_ulr(). The issue will be fixed in our next update, which be released soon. For quick fix, you can do it by yourself. Edit ecommerce-pro/inc/featured-content.php line 558 and replace esc_ulr with esc_url. That will fix the issue.
    Thank you for helping us find out the issue.

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96314
    Mahesh
    Participant

    @ukufner: Oh, I thought the menu in your website. Have you tried deactivating the plugins? And did deactivating the plugins fix the issue? Let me know further.

    Regards,
    Mahesh

    in reply to: default sizes for main column and one sidebar #96313
    Mahesh
    Participant

    @skstewart: Please post in your site URL so that I can help you further.

    Regards,
    Mahesh

    in reply to: Slider – remove links #96312
    Mahesh
    Participant

    @rolandallen: Sorry, my mistake, the code should be as follows:
    <h1 class="entry-title">' . get_the_title() . '</h1>
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Menu Bar #96311
    Mahesh
    Participant

    @filip_1: Please add the following CSS, it will fix the issue.

    #menu-pocetna .sub-menu .menu-item {
    	width: auto;
    }
      
    #header #mainmenu ul li .sub-menu a {
        width: auto;
      	text-align: left;
    }

    Regards,
    Mahesh

    in reply to: Slider – remove links #96248
    Mahesh
    Participant

    @rolandallen: For that, you’ll need to do a little change in the above code. In the above code replace the following line:

    <h1 class="entry-title">
        <a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    </h1>

    With the code below:
    <h1 class="entry-title">' . the_title() . '</h1>

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96247
    Mahesh
    Participant

    @gmg-jet: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96246
    Mahesh
    Participant

    @ukufner: I check your site, the menu seems to be working fine. All links in menu are pointing to the appropriate pages. No HTTP ERROR issue found.
    If you are having problem again, go to Dashboard=> Settings=> Permalinks and click Save Changes button and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96231
    Mahesh
    Participant

    @ukufner: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Slider – remove links #96229
    Mahesh
    Participant

    @rolandallen:
    Hi Roland,

    What seems to be the problem. I tried your code in our server and it is working fine.
    Let me know further. Please post in your site URL.

    Regards,
    Mahesh

Viewing 20 posts - 3,141 through 3,160 (of 4,903 total)