Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi @rinzee,
To disable header image, go to “Dashboard=> Appearance=> Customize=> Header Image” and select
Disabled
option inEnable Featured Header Image on
setting then click onSave & Publish
button and check.Let me know if the problem still persists and please post your site url.
Thanks,
MaheshMahesh
ParticipantHi @stringa
I think you’ve forgot to select the
Randomizing uploaded headers
option after uploading the image to the header. Go to “Dashboard=> Appearance=> Customize=> Header Image” and make sureRandomizing uploaded headers
is displayed inCurrent Header
option. ClickSave & Publish
button and check.Let me know if this fixes issue.
Thanks,
MaheshMahesh
ParticipantHi @Ma Ko,
You’ve selected Static Page in Front Page Displays that is why your site is not displaying the posts.
You have to change it toYour latest posts
option.Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and set
Front Page Displays
option toYour latest posts
option.Hope this helps you to display your latest post in your homepage.
Thanks,
MaheshMahesh
ParticipantHi @Yvonne,
Thankyou for using Catch Everest Pro.
I’m glad that you’ve found the solution yourself. The instruction you’ve found is correct and CSS for hiding the title is correct too. But you have some error in the following line in your Custom CSS:
.entry-header .entry-title a:hover { color: #222
You’ve missed the semicolon and the ending brace which should be like the following:
.entry-header .entry-title a:hover { color: #222; }
Let me know if this fixes your issue.
Thanks,
MaheshMahesh
ParticipantHi @Steve,
The language selector you are trying to add with qtranslate plugin has only option to add it as a widget. Adventurous Theme’s free version has only limited widget area. You can add it in the available widget area i.e. sidebar. If you want to add it to the header section then either you have to hire a customizer or you can upgrade to Adventurous Pro which has Header Right Widget Area.
Thanks,
MaheshMahesh
ParticipantHi @nextstep,
You’ve add the images in the content area. The gap between the image and text is uniform in the theme. The gap you’ve mentioned is because of the image ending at around half of the new line of the text, hence it is taking the next line. The text and image size in the content may vary and so does the gap between the image and text. So fixing with Custom CSS won’t work.
Hope you understand.
Thanks,
MaheshMahesh
ParticipantYes, this feature is already built-in in Catch Flames Pro. Go to “Dashboard=> Appearance=> Theme Options=> Layout Options” and choose Full Content Display option in Archive Content Layout.
Let me know if this solved your issue.
Thanks,
MaheshMahesh
ParticipantHi @nextstep,
For that add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:
#primary{ width: 650px; } #secondary{ width: 260px; }
Please change the width in styles as required and make sure that the sum of the width of #primary and #secondary is 910px;
Let me know if this helped.
Thanks.Mahesh
ParticipantHi @Gert,
Yes, it is possible to change the layout for the header right menu. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS Options” box and add the following CSS.
Please change the color and space as per your requirement.
/* Change background for 1st menu item */ #menu-call-to-action-menu li:nth-child(1) { background-color: #FF0000; } /* Change background for 2nd menu item */ #menu-call-to-action-menu li:nth-child(2) { background-color: #0000FF; } /* Change background for 3rd menu item */ #menu-call-to-action-menu li:nth-child(3) { background-color: #01DF01; } /* Add space between menu and black border to menu items */ #menu-call-to-action-menu li{ margin-left: 5px; border: 1px solid #000000; } #menu-call-to-action-menut li:first-child{ margin-left: 0; }
Please remove following style from Custom CSS box to remove background-color for Header Right Menu:
.nav-header-right .menu { background-color: #e03a3e; }
Let me know if this worked for you as desired.
Thanks.
Mahesh
ParticipantMahesh
ParticipantHi @scottgoodacre,
For customizing background image you can go to “Dashboard=> Appearance=> Customize=> Background Image”.
And for further customization, you have to do it with Custom CSS and for that you’ll need to post your site url.
Thanks.
Mahesh
ParticipantHi @Beverly,
To hide the word Home title on the home page, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS Options” box:
.home #main header.entry-header { display: none; }
Let me know if this solved your issue.
Thanks.
Mahesh
ParticipantHi @Steve,
In the previous reply, I’ve put the default max-height value so that you could change as you desired but I think you’ve got confused. Please replace previous Custom CSS with the following:
#masthead #site-logo img { max-height: 60px; } #masthead.fixed-header #site-logo img { max-height: 45px; }
Increase or decrease the max-height as per your requirement.
E.g.
max-height: 70px;
or
max-height: 50px;Let me know if this helps.
Thanks.Mahesh
ParticipantHi @Steve,
1. For changing logo size, use the following style in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:
#masthead #site-logo img { max-height: 41px; /* Your desired height for normal header logo */ } #masthead.fixed-header #site-logo img { max-height: 32px; /* Your desired height for fixed header logo */ }
2. You’ve used Elite Accordion plugin which is overwriting the default CSS for Promotional Headline Text color. So you’ll need to either disable that plugin or add the following style in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:
#homepage-message .left-section h2 { color: #404040; /* Put your desired color's hex value */ }
Let me know if this solves your issue.
Thanks.
December 6, 2015 at 9:54 am in reply to: Change color of Title hover color beside logo(web place-header) #80719Mahesh
ParticipantHi @Marko
For now, we don’t have the in-built option to change the color of the site title. You can change it with Custom CSS. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following style.
h1#site-title a:hover{ color: #6497ff; /* Hex value for your desired color */ }
Let me know if this worked for you.
Thanks.Mahesh
ParticipantHi @billhood
As per your post, I’ve tested the same with WordPress 4.3.1, Catch Kathmandu 3.5.1 and s2Member 150925 and everything is working fine, the draft is auto saving normally whether I add a new post or edit an old one.
Is there any specific settings that I can check?I suggest you to try it with a fresh install of WordPress and Catch Kathmandu theme and let me know if the issue persists.
Mahesh
Participant@Bret
Yes, you can use the shortcode for the slider inside php tags. But the code you’ve written is slightly incorrect. Use the code given below:
<?php echo do_shortcode('[sangar-slider id=504]'); ?>
This will place the slider in your page.
Let me know if you’ve any problem.Thanks.
December 4, 2015 at 9:50 am in reply to: Making The Logo and Button in Menu Take You To The Top Of Home Page #80613Mahesh
ParticipantYes, this can be done and in a very simple way. Go to “Dashboard=> Appearance=> Theme Options=> Web Master Tools=> Header Footer Codes=> Code to display on Footer” box and add the following code:
<script> jQuery('#top-logo a').click(function () { jQuery('body,html').animate({ scrollTop: 1 }, 800); return false; }); </script>
Let me know if this fixes your issue.
Thanks. -
AuthorPosts