Forum Replies Created

Viewing 20 posts - 5,221 through 5,240 (of 14,504 total)
  • Author
    Posts
  • in reply to: portfolio #50696
    Sakin
    Keymaster

    @luismarioochoa: This is more of plugin incompatibility. So, can you ask in plugin support forum. I don’t know about this plugin.

    in reply to: Password protect wp-admin #50694
    Sakin
    Keymaster

    @greg2015: Sorry I am not sure about .htaccess and server configuration. You need to ask to your server.

    in reply to: mobile friendly feature #50693
    Sakin
    Keymaster

    @ssl2: Sorry you are not supposed to add all the css in “Appearance => Theme Options => Custom CSS” box. You just need to add the css which you want to change it. That is why it is having issue. Please remove all the css and just add which you want to change it.

    in reply to: Change width of catch box pro theme vs change to Evolution #50654
    Sakin
    Keymaster

    @Keith: thanks for your appreciation. Cheers 🙂

    in reply to: Header Featured Image #50653
    Sakin
    Keymaster

    @Kim: that is logo not header image. You can add the following css:

    @media screen and (min-width: 961px) {
    #logo-wrap {
        display: inline-block;
        text-align: center;
        width: 70%;
    }
    #site-logo {
        float: none;
    }
    #sidebar-header-right {
        width: 30%;
    }
    }
    in reply to: Change width of catch box pro theme vs change to Evolution #50650
    Sakin
    Keymaster

    @Keith: I found the issue in your custom css. You have added comment like below:
    /* Stretches Entire Site - From CatchBox Pro Theme
    But it should be as below:
    /* Stretches Entire Site - From CatchBox Pro Theme */

    So, just delete your current custom css and add the following css instead:

    /* Hide Author */
    .entry-meta .by-author { display: none; }
    
    /* Removes Gray Box Around Captioned Images */
    .wp-caption { background: none transparent; max-width: 100%; padding: 0; }
    
    /* Stretches Entire Site - From CatchBox Pro Theme */
    @media screen and (min-width: 1025px) {
    	.site {
    	    max-width: 94%;
    	    width: 100%;
    	}
    	#primary {
    	    width: 72%;
    	}	
    	#secondary {
    	    width: 26%;
    	}	
    }
    @media screen and (min-width: 1360px) {
    	.site {
    	    max-width: 1300px;
    	    width: 100%;
    	}
    }
    in reply to: post author and date #50648
    Sakin
    Keymaster

    @Will: You have already remove the shade of gradient and make is solid color by changing menu background color.

    in reply to: Featured Post in place of Featured Content #50646
    Sakin
    Keymaster

    @emlawag: Sorry currently there is only option to user Featured Content. No option to exchange it with posts. We are in the process of adding this feature by the end of February. We have this features in our new themes like Catch Base Pro and Gridalicious Pro theme.

    in reply to: 'Search results' text in breadcrumbs plugin #50644
    Sakin
    Keymaster

    @nac2311: Ok I have just emailed you.

    in reply to: 'Search results' text in breadcrumbs plugin #50633
    Sakin
    Keymaster

    @nac2311: That is not controlled thorough theme. It is controlled from plugin. When I check in plugin German translation. It shows fine. Have you install your WordPress in German or in English. If you have installed in German than it should work fine. If you haven’t then you need to edit plugin file and translate it. You need to edit the file class.bcn_breadcrumb_trail.php

    If you have completed German translation for Simple Catch Pro theme then can you contribute to us. So, that we will bundle in theme itself.

    in reply to: Change width of catch box pro theme vs change to Evolution #50628
    Sakin
    Keymaster

    @Keith: It’s not working for me in all of your pages. I see that you have used W3 Total Cache with full cache. So, go to “Performance => Dashboard” and then click on “Empty all cache”

    in reply to: post author and date #50600
    Sakin
    Keymaster

    @Will: If you want solid color or any other color in your menu. Then you can go to “Appearance => Theme Options => Color Options”.

    Thanks for your appreciation. We try to reply all our queries within 24hours.

    in reply to: Problem with translation of first featured slide #50599
    Sakin
    Keymaster

    @Bill: Let’s wait for few days to get response from WPML team. If this doesn’t work then I will try it in your server.

    in reply to: Associated Files #50598
    Sakin
    Keymaster

    @D: Yes, you can do that. You can use plugin “Jetpack” and control widget with Widget visibility module.

    in reply to: Title & tagline #50594
    Sakin
    Keymaster

    @Michael: That logo size, depends on the size you upload. If you like small logo then uplaod small logo.

    in reply to: post author and date #50593
    Sakin
    Keymaster

    @Will: If you want to remove all entry meta. Then you can replace the previous css i gave you with the following css:

    .entry-meta { display: none; }

    in reply to: Remove page titles from body of page #50591
    Sakin
    Keymaster

    @Nix: Thanks for your appreciation 🙂

    in reply to: Blog page set up #50590
    Sakin
    Keymaster

    @lorencowka:
    1. That search referral is not from our theme. So, I don’t know about that.
    2. Are you talking about the text in the featured slider, then you can change that text color from “Appearance => Theme Options => Color Options => Slider Color Options”

    in reply to: Changing Colors Menu #50587
    Sakin
    Keymaster

    @Epheistos: There is problem in your Custom CSS. So, just remove all your custom css and then add the following css in “Appearance => Theme Options => Custom CSS” box:

    /* Menu Background Color */
    #branding #access {
    	background: #252FE9; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#0579FF, #252FE9);
    	background: -o-linear-gradient(#0579FF, #252FE9);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0579FF), to(#252FE9)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#0579FF, #252FE9);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0579FF', endColorstr='#252FE9'); /* for IE */
    }
    /* Menu Text Color */
    #branding ul.menu ul a {
    	color: #fff;
    }
    
    /* Menu Hover Background Color */
    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus {
    	background: #0579FF; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#252FE9, #0579FF);
    	background: -o-linear-gradient(#252FE9, #0579FF);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252FE9), to(#0579FF)); /* Older webkit syntax */
    	background: -webkit-linear-gradient(#252FE9, #0579FF);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#252FE9', endColorstr='#0579FF'); /* for IE */
    	color: #fff;
    }

    For comment below title, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .hentry .entry-header .comments-link a:hover,
    .hentry .entry-header .comments-link a:focus,
    .hentry .entry-header .comments-link a:active {
    	background-color: transparent;
    }
    in reply to: post author and date #50585
    Sakin
    Keymaster

    @Will: Just add the following css in “Appearance => Theme Options => Custom CSS” box:
    .entry-header .entry-meta { display: none; }

Viewing 20 posts - 5,221 through 5,240 (of 14,504 total)