Forum Replies Created

Viewing 20 posts - 5,161 through 5,180 (of 14,497 total)
  • Author
    Posts
  • in reply to: Adventurous and MQTranslate-Plugin #50907
    Sakin
    Keymaster

    @Kris:
    1. Adventurous Free theme don’t have compatibility to mqTranslate plugin, that is why you are having this issue. We are in the process of add this plugin in our Pro version which is schedule to release in 2 to 3 days time.

    2. I check in your flag code and I see there is extra / in img src, you can see the following code:
    <img alt="English" src="/http://costa-vertical.com/wp-content/plugins/mqtranslate/flags/gb.png">
    This should be as
    <img alt="English" src="http://costa-vertical.com/wp-content/plugins/mqtranslate/flags/gb.png">

    3. Same thing, because of extra / in img src, the safari browser cannot find the image and it is showing ? mark.

    in reply to: Mobile devices – Only shows Header right menu #50906
    Sakin
    Keymaster

    @Kris: It’s coming same in both English and Deutsch version. I see that you are using “Mobile Theme” from Jetpack plugin. Can you disable that module from Jetpack settings and check in.

    in reply to: Blank Featured Slider # #50904
    Sakin
    Keymaster

    @Kimmo: I have just email you. Can you reply me there.

    in reply to: side bar width adjustment in 3 column layout #50882
    Sakin
    Keymaster

    @Will: Catch Evolution Pro theme is responsive design theme so adjusting width is little complex, as you need to adjust for various screen sizes. So, I just recommend you to change to large screens. In the following css, I have reduces the width of the third sidebar by 40px and increase the width of Right second sidebar by 40px as per your question. So, just add the following css in “Appearance => Theme Options => Custom CSS” box:

    /* For Screen size above 1060px */
    @media screen and (min-width: 1061px) {	
    	.three-columns .content-sidebar-wrap { width: 794px; }
    	.three-columns #secondary { width: 330px; }
    	.three-columns #third { width: 200px; }
    }
    /* For Screen size above 1224px */
    @media screen and (min-width: 1225px) {
    	.three-columns .content-sidebar-wrap { width: 960px; }
    	.three-columns #secondary { width: 400px; }
    	.three-columns #third { width: 200px; }
    }
    in reply to: responsive theme #50881
    Sakin
    Keymaster

    @mvandrei: Not sure what are you trying to do it. Can you post in your site URL and explain. Looks like you are trying to add in set of images as custom banners. This theme doesn’t have this feature and you might need to hire customizer to add in.

    in reply to: Primary Menu only works on front page #50880
    Sakin
    Keymaster

    @Ellen: Thanks for finding out the issue. We will fix this in new version update. For now, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box
    .site-banner { overflow: visible; }

    in reply to: Changing Colors Menu #50874
    Sakin
    Keymaster

    @Epheistos: Ok then replace your current custom css to the following css:

    /* Menu Background Color */
    #branding #access,
    #branding ul.menu ul a {
    	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;
    }
    
    .hentry .entry-header .comments-link a:hover,
    .hentry .entry-header .comments-link a:focus,
    .hentry .entry-header .comments-link a:active {
    	background-color: transparent;
    }
    
    .category .page-header { display: none; }
    in reply to: Top fixed menu bar questions #50873
    Sakin
    Keymaster

    @Will: Please post in your site URL so that I can check in.

    in reply to: Theme in IE #50872
    Sakin
    Keymaster

    @bobgarrett: Not sure about that as it’s working fine in my side. You might want to check with IE css developer.

    in reply to: Social Icons in line with menu #50871
    Sakin
    Keymaster

    @Eduardo: You can add the following css in “Appearance => Theme Options => Custom CSS” box. If you further want more space then you can increase margin-top from 10px to more that you want.
    .sidebar-top .widget_catchbox_social_widget { margin-top: 10px; }

    in reply to: subheadline on all pages and second line #50870
    Sakin
    Keymaster

    @Gunter: You can see it’s written Homepage Headline which mean only for Homepage. But yes, as per my earlier reply. We will add this option in future version update.

    in reply to: Primary Menu only works on front page #50869
    Sakin
    Keymaster

    @Ellen: You are the first person to ask for support for Create Pro theme.

    You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box. Further, you can change the color code in the following css:

    .main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current_page_ancestor > a {
        color: #844627;
    }
    .create-menu a:hover { color: #844627; }
    in reply to: Associated Files #50868
    Sakin
    Keymaster

    @D: You shouldn’t edit anything from “Appearance => Editor” as this will edit the core theme file which will be reverted back to original when you update or upgrade the theme. The safe way to add CSS will be from “Appearance => Theme Options => Custom CSS” or by build child theme and adding it in child theme style.css

    You can add the following css to change the color of the custom menu in your sidebar.
    .widget-area .widget .menu a { color: #757575; }

    in reply to: Dashboard > Appearance > Widgets not working #50867
    Sakin
    Keymaster

    @Juha_52: From when did you get this issue. Have you customized any core theme files inside catch-evolution-pro folder. Also, I see that you are using child theme. Can you let me know what changes have you made it. Further, I see t that you have WP Super Cache. So, can you clear the cache and check in.

    in reply to: Make Featured SLider Images "not Clickable" #50864
    Sakin
    Keymaster

    @lucabriganti85: Sorry I see that you are using Simple Catch Free version, which only have option to use Featured Post Slider. This post slider is created to highlight your post in the slider. So, it will automatically link to the post.

    If you don’t need then you might want to upgrade to Pro version where you have option to use “Featured Image Slider” and upload image and remove the link as per your need.

    in reply to: remove white space under breadcrumbs #50863
    Sakin
    Keymaster

    @Kim: You can add the following css, for the font you can change the font as per your need.

    .page-header { margin: 0; }
    .page-title { font-size: 16px; }
    in reply to: Header menu went's dark when scrolling #50862
    Sakin
    Keymaster

    @greenline: You are using old version of theme. Can you update to latest version. Adventurous 1.4 then if there is still problem then I will check in. After the update don’t forget to refresh your browser to clear the cache.

    in reply to: Blank Featured Slider # #50857
    Sakin
    Keymaster

    @Young: Thanks and I have update it. Can you check it now.

    in reply to: more space between "read more" and "comments" #50840
    Sakin
    Keymaster

    @Eduardo: You can add in the following css in “Appearance => Theme Options => Custom CSS” box:

    footer.entry-meta { padding-top: 15px;}
    .entry-meta .cat-links, .sep-comment ( display: none; }
    .entry-meta .comments-link { float: right; }
    in reply to: add logo 'on top of menu/header image #50839
    Sakin
    Keymaster

    @Pieter: That requires lot of css customization and also need to adjust as per the responsive design. So, for this I recommend you to hire CSS developer to customize for you.

Viewing 20 posts - 5,161 through 5,180 (of 14,497 total)