Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @rickm813,
That’s great, you figured yourself.
I thought you meant the nav bar, nevermind.Regards,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantMahesh
ParticipantHi @JOSHUA,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#feature-slider {
margin-top: 0;
}Regards,
MaheshMahesh
ParticipantMahesh
ParticipantHi @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 #82234Mahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @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,
MaheshMahesh
ParticipantHi @shikarime,
Thank you for using Catch Everest Pro.
I’m glad that you tried on your own and fixed your issue. I checked the your problem with the header image on hover and is working fine as on the site you’ve mentioned, there is no 50% text visible issue. Please share an image of it to make it clear. It would be more easier if we check it as a website.The next issue about the categories in different page, instead of creating custom pages, you can do it by adding categories in menu.
Go to “Dashboard=> Appearance=> Menu” then click on “Categories” dropdown then check on the categories you want then click “Add to menu” button and then save it.If you have any questions, let me know.
Regards,
MaheshMahesh
ParticipantHi @rflores,
For this, you have to create a child theme. You can find the details HERE or simple download the “Simple Catch Pro Child Theme” from this LINK
Then add the following codes in child theme’s
function.php
.add_action( 'init' , 'simplecatch_child_adjust_image_size'); function simplecatch_child_adjust_image_size() { remove_image_size( 'featured'); add_image_size( 'featured', 210, 210, true); }
Regards,
MaheshMahesh
ParticipantHi @Urszula,
It seems you’ve put some widgets in Header Right, please remove it.
Go to Dashboard=> Appearance=> Customize=> Widgets=> Header Right” and delete all widgets from here. Then the headings and logo will be centered.Regards,
MaheshMahesh
ParticipantHi @effess,
Here is the CSS for two pages, “Magic of Lavender” and “Research Lavender”. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following styles:
#main .type-page.post-1910 .entry-header .entry-title a{ color: #26a4cd; } #main .type-page.post-1950 .entry-header .entry-title a{ color: #a7a475; }
Mahesh
ParticipantHi @Urszula,
Please post in your site url, so I’ll be able to know your problems.
Regards,
MaheshJanuary 4, 2016 at 9:47 am in reply to: Remove borders around the content boxes and widgets and narrow sidebar #82165Mahesh
ParticipantHi @Lucia,
For removing white border on main content of pages and posts, please add the following CSS in Custom CSS box:
.hentry { border: none; }
Regards,
MaheshMahesh
ParticipantHi @effess,
Please let me know the colors for the respective pages, then it’ll be easy for me to provide you with the CSS code.
Regards,
MaheshMahesh
ParticipantHi @Henry,
Thank you for using Catch Adaptive Pro.
There is no in-built feature to change the text-shadow of the Site Title. However, you can achieve it with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” and add the following CSS.
.site-title{ /* Note: This is the default value, please change it as per your requirement */ text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.5); }
Regards,
Mahesh -
AuthorPosts