Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi @husker,
1. Footer Content
I recommend you to upgrade to Catch Responsive Pro. This feature is available in Pro version by default. You can change the footer text content to your desired content.
But if you prefer to have it in free version. You’ll need to do some customization. You have to override this function (catchresponsive_footer_content).2. The code in
functions.phpabove will enqueue the styles from parent theme to the child theme. And it is correct. Did you mean the some or you mean something different?
Let me know if any problem.Regards,
MaheshMahesh
ParticipantHi @noote,
Catch Responsive free theme has to slider options.
1. Demo Slider (Content cannot be changed)
2. Page Slider (Use featured image as slider image, Page title as Slider title and Page content as Slider content, links to related page).
To use page slider, go to “Dashboard=> Appearance=> Customize=> Featured Slider” and select Page slider in Select Slider Type then select number of slides you want to use (need refresh). Then in select the page you want to use as slider form Featured Page # drop down.If you want to have other options in slider, I recommend you to upgrade to pro.
1. Features from Catch Responsive free (Demo Slider and Page Slider)
2. Post Slider (Use featured image as slider image, Post title as Slider title and Post content as Slider content, links to related Post).
3. Image Slider (custom image, custom title, custom content and custom link).
4. Category SliderRegards,
MaheshMahesh
ParticipantHi @calmo16,
Yes, this can be done. It is a built-in feature.
Go to “Dashboard=> Appearance=> Customize=> Site Identity” and uncheck Display Header Text. Then scroll down a bit and uncheck Check to disable logo. Just above this option, you’ll find Logo option, change the logo to you desired image with Change image.
Let me know if any problem.Regards,
MaheshMahesh
ParticipantHi @ianworsley,
There is a little issue in the Custom CSS you’ve added. The CSS you’ve added is
#content. post img {width:100%}#content. post img {width:100%}
This won’t work, it must be like the following:#content .post img { width: 100%; }Please replace the CSS and let me know if the issue persist.
Regards,
MaheshMahesh
ParticipantHi @ianworsley,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#content .post img { width: 100%; }Let me know if this fixes your issue.
Regards,
MaheshMahesh
ParticipantHi @micky1982,
Sorry for the confusion, by homepage I mean the page you want to display as your site’s front page.
Regards,
MaheshMahesh
ParticipantHi @mehlem,
It is a translation issue. The J was supposed to display the year. You can fix this by editing de_DE.po file with poEdit in theme’s language folder.
Change this in line 54
msgstr "M J"tomsgstr "M Y"
and change this in line 64
msgstr "J"tomsgstr "Y"
This will be fixed in the next update.Regards,
MaheshMahesh
ParticipantHi @catchemall,
Do you mean boxed layout? Catch Adaptive is a full width layout theme. If you want boxed layout, I recommend you to use our other themes with boxed layout. Boxed layout themes:
1. Catch Box
2. Catch Responsive
3. Catch Base
4. Catch Kathmandu
5. Simple CatchRegards,
MaheshFebruary 16, 2016 at 10:22 am in reply to: Catch Box doesn't look the same on Firefox and Chrome #85544Mahesh
ParticipantHi spespam,
This can be done with Custom CSS. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
body, input, textarea { font-family: Arial; }Regards,
MaheshMahesh
ParticipantHi @micky1982,
In your theme, there is frontpage set to latest post, you have to change it to static homepage. Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and select A static display then select page you want to display as Home page in Front Page and page you want to display blog posts in Post Page then click same.
Let me know if this fixes the issue.Regards,
MaheshMahesh
ParticipantHi @wyanco,
Add the following CSS, this will fix the issue for horizontal transition.
#feature-slider .wrapper { overflow: hidden; }Regards,
MaheshMahesh
ParticipantHi @mehlem,
Now the month in archive spells for example Februar, may be this is how it spells on your language for February. Is it? or have you managed to change it?
Regards,
MaheshMahesh
ParticipantHi @mehlem,
I just want to make sure that you’re using Yoast SEO plugin or not first.
The solution is, go to “Dashboard=> SEO=> Title & Metas=> Archives” then in “Duplicate content prevention” section uncheck “Disable the date-based archives” option and click “Save Changes”.Regards,
MaheshMahesh
ParticipantMahesh
ParticipantHi @elvis,
Yes, the update is working fine. The latest version is 4.3.3. No such issues, may be some problem/breakage during updates.
Let me know if the problem persists.Regards,
MaheshMahesh
ParticipantThe issue is because of the Custom CSS. You’ve changed width of .site to 1079px. The default width is 1200px.
Regards,
MaheshMahesh
ParticipantHi @husker,
I don’t quite get you what you meant. Can you please describe further. For CSS you can use theme’s Custom CSS box.
Regards,
MaheshMahesh
ParticipantHi @Wynaco,
For the above you’ll need little customization. First create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following codes.
function cleanbox_child_move_slider_below_site_title(){ remove_action( 'clean_box_header', 'clean_box_featured_slider', 30 ); add_action( 'clean_box_header', 'clean_box_featured_slider', 110 ); } add_action('init', 'cleanbox_child_move_slider_below_site_title');This will move, Featured Slider below the Site Title and above Featured Content.
Then for making Featured Slider same as the content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#feature-slider .wrapper { width: 1200px; } @media screen and (max-width: 1280px) { #feature-slider .wrapper { width: 1140px; } } @media screen and (max-width: 1152px) { #feature-slider .wrapper { width: 1038px; } } @media screen and (max-width: 1100px) { #feature-slider .wrapper { width: 960px; } } @media screen and (max-width: 990px) { #feature-slider .wrapper { width: 738px; } } @media screen and (max-width: 767px) { #feature-slider .wrapper { width: 660px; } } @media screen and (max-width: 700px) { #feature-slider .wrapper { width: 561px; } } @media screen and (max-width: 600px) { #feature-slider .wrapper { width: 522px; } } @media screen and (max-width: 540px) { #feature-slider .wrapper { width: 462px; } } @media screen and (max-width: 480px) { #feature-slider .wrapper { width: 380px; } } @media screen and (max-width: 400px) { #feature-slider .wrapper { width: 320px; padding: 0; } } #feature-slider { margin-top: 0; } #featured-content { padding-top: 20px; }Regards,
MaheshMahesh
ParticipantHi @Wynaco,
It seems to be a little bug in theme’s style, for now you can use some Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
@media screen and (min-width: 1160px) { #featured-content.layout-four .hentry { width: 25%; } }The issue will be fixed in next update.
Regards,
Mahesh -
AuthorPosts
