Forum Replies Created
-
AuthorPosts
-
MaheshParticipant
Hi @marcodimi,
Can you please clarify on what type of code you want to add. We need to look at it. Please share us the code you want to use.
For that please put the code in http://pastebin.com/ and provide the link for it.
Regards,
MaheshMaheshParticipantHi @andrewf90,
The theme uses same primary menu in both the desktop version and mobile version, the only difference is the way of displaying.
The menu in mobile version is also showing the nested sub menus similar to that of menu in desktop version. This can be recognized by seeing the font-size and preceding space of the menu items.
I hope you get it.The code you’ve used in the free version will work on pro version too.
Regards,
MaheshMaheshParticipantHi @knudkp,
1. The latest version available of Catch Base Pro is 3.2.
2. It seems the site looking fine in desktop, iPad and mobile view.
Regards,
MaheshJanuary 6, 2016 at 12:13 pm in reply to: Header image not centred or full-width – Catch Everest FREE Theme #82289MaheshParticipantHi @adunning,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add any of the following CSS.
1. For Header logo Centered:
#site-logo { float: none; } #site-logo img { margin: 0 auto; }
2. For Header logo full width:
#site-logo { float: none; } #site-logo img { width: 100%; }
Regards,
MaheshMaheshParticipantHi @[email protected],
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#promotion-message .section.left > p { color: #00ff00; }
Note: Please change the hex value to desired color.
Regards,
MaheshMaheshParticipantHi @rickm813,
Yes, there is an inbuilt setting for this feature in both themes.
You’ve already set the slider for the homepage only, so I’ll skip this one. The next in to enable Header Featured Image in all other pages excluding Homepage.
1. Go to “Dashboard=> Appearance=> Customize=> Header Image”.
2. Add an image you want as Header Featured Image or select any image from suggested if you’ve already uploaded.
3. Select “Excluding Homepage” option from “Enable Featured Header Image on” dropdown.
4. Click “Save & Publish” button and check.Regards,
MaheshMaheshParticipantHi @Cricket,
I checked your site, you’re using child theme and modified a lot in style.css. I suggest you to change to parent theme, and test whether the issue persists. If the problem disappears in parent theme, please check your child theme. I recommend to follow the instructions on how to create child theme HERE.
Regards,
MaheshMaheshParticipantHi @andrewf90,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” and add the following CSS.
@media screen and (max-width: 360px){ #site-title { font-size: 24px; } }
Regards,
MaheshMaheshParticipantHi @lilianach,
Since this issue seems to arise due to cache, I suggest you to contact the server and clear the cache then check again.
Regards,
MaheshMaheshParticipantHi @shikarime,
If you don’t want to display “Category Archive”, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
.category #content .page-title { display: none; }
Or
Create a child theme (You can find the details on how to create child theme HERE), then copy the
archive.php
from main theme to child theme, and edit thearchive.php
.Modify the following code:
if ( is_category() ) { printf( __( 'Category Archives: %s', 'adventurous' ), '<span>' . single_cat_title( '', false ) . '</span>' ); }
Like this:
if ( is_category( 'sample-category-1' ) || is_category( 'sample-category-2' ) ) { printf( '<span>' . single_cat_title( '', false ) . '</span>' ); } elseif ( is_category() ) { printf( __( 'Category Archives: %s', 'adventurous' ), '<span>' . single_cat_title( '', false ) . '</span>' ); }
Regards,
MaheshMaheshParticipantHi @rickm813,
That’s great, you figured yourself.
I thought you meant the nav bar, nevermind.Regards,
MaheshMaheshParticipantHi @Urszula,
To change font size in footer 1, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:
/* For Title Widget Title */ #first.widget-area .widget-title { font-size: 20px; } /* For Title Widget Text */ #first.widget-area .textwidget { font-size: 18px; }
Note: Change the size per requirement.
Regards,
MaheshMaheshParticipantMaheshParticipantHi @JOSHUA,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#feature-slider {
margin-top: 0;
}Regards,
MaheshMaheshParticipantMaheshParticipantHi @minion,
This is the default style provided by the WooCommerce Plugin. Its is not possible to do it through theme’s Custom CSS. You’ll need to customize the WooCommerce template files.
Regards,
MaheshJanuary 5, 2016 at 12:07 pm in reply to: Catch Responsive Pro jQuery Conflict with Simple Press #82234MaheshParticipantHi @beatmaniaNZ,
This is not the theme issue, we always use the core jQuery library provided by WordPress in all our themes. And we haven’t used jQuery UI in our themes. You may check it by switching to core themes. If the problem persists, it is due to some plugins that you’re using. Try deactivating the plugins one by one and check the site again.
Regards,
MaheshMaheshParticipantHi @rickm813,
Yes, both are possible.
For sticky menu, you have to create child theme (details to create child theme is HERE) and add some scripts and styles to it. If you want this alternative, let me know and I’ll provide you the codes.And for second alternative, to hide menu bar completely, add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:
.nav-primary.search-enabled{ display: none; }
Regards,
MaheshMaheshParticipantHi @rickm813
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#feature-slider .entry-container{
opacity: 1;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
}Regards,
MaheshMaheshParticipantHi @lilianach,
Can you please specify the link in which the header image disappears? I check you site and its working fine, header image is displaying in different page normally.
Regards,
Mahesh -
AuthorPosts