Forum Replies Created
-
AuthorPosts
-
PratikParticipant
hi @troyjensen,
I am glad everything worked out. If you liked our theme and support, please leave us a review at https://wordpress.org/support/view/theme-reviews/adventurousRegards,
PratikPratikParticipantHi @Cheryl,
For Palatino font, add in your css as follows:#main-slider .entry-content { font-family: "Palatino Linotype","Book Antiqua",Palatino,serif; font-size: 20px; }
Notice the font-size: 20px, increase or decrease to change its size as per your need.
For Tagline, add following CSS,
#site-description { font-size: 30px; }
Notice the font-size: 30px, increase or decrease to change its size as per your need.
To reduce the overall size of the header( make it narrower ).
#hgroup { padding-top: 10px; } #hgroup-wrap { padding-bottom: 10px; }
Notice the 10px in both conditions. Increase or decrease them both as per your need.
Let me know how it works out.
Regards,
PratikJanuary 11, 2016 at 12:44 pm in reply to: Recommended shopping cart plug in for Catch Responsive Pro #82643PratikParticipantYou are welcome. Have a nice day.
Regards,
PratikPratikParticipantHi @radeko,
I am glad it worked out. If you liked our theme as support, please leave us a review at https://wordpress.org/support/view/theme-reviews/catch-responsiveRegards,
PratikPratikParticipantHi @marcodimi,
I have checked the issue and it is exactly how @mahesh has given it. The script should go to footer section. Once you add it there, it should work.
PratikParticipantHi @raviuppal,
It is working fine from the mobile devices that I have checked. Maybe there is cache issue in your mobile.To get the button and title below your ads, you will need html and CSS which falls outside out Theme Support Scope. You will need to hire a customizer for that.
Regards,
PratikPratikParticipantGreat you solved it yourself. Let us know if you have any more issues.
Regards,
PratikPratikParticipanthi @Masac,
Sorry, but it has been difficult because of a different language. CAn you remove that CSS and let me know in which page the issue is?We need to build a child theme and make customization there to completely remove it.
Regards,
PratikPratikParticipantGreat everything worked out. It would be great if you could leave a review for this theme at: https://wordpress.org/support/view/theme-reviews/chicago#postform.
Regards,
PratikPratikParticipantHi @[email protected],
To change background color, you can go to Appearance=> Customize=> Colors=> Background Color and select any color you like.
Regards,
PratikPratikParticipanthi @marcodimi,
For “ARCHIVI” widget, use following code:/* For Archives Widget Heading */ .widget_archive h3 { font-size: 26px; } /* For Archives Widget Content*/ .widget_archive ul li { font-size: 15px; }
Let me know how it works out.
Regards,
PratikPratikParticipantHi @raviuppal,
http://www.untoldreality.com/great-deals/ is currently giving me 404 page not found error. Can you check it?
Regards,
PratikPratikParticipantHi @TheGamer1,
Thank you for using Catch Flames. Yes, there was a bug in this theme, but it has been removed and sent for update. Once the update is available, this bug will be fixed.If you want this fixed asap, then you can go yo your theme’s header.php file and remove line 26 which has following code:
<title><?php wp_title( '|', true, 'right' ); ?></title>
Regards,
PratikPratikParticipanthi @raviuppal,
1. There is an error in your html. The <main> element is not closed properly, hence footer is getting cut off. Once you solve this issue, the footer will be full width.
2. This is not possible via custom CSS. You need to make modification to HTML and edit CSS. This is beyond the theme support scope. Please hire a customizer for this.
3. Add following CSS codes to Appearance=> Customize=> Theme Options=> Custom CSS and this should work.post-69.page.type-page.status-publish.hentry p { float: left; width: 50%; }
4. To show different ads on different page, just post the ad content in Add/Edit page content. If there is some criteria on to how to show ads, you will need to find a developer to make custom plugin for you. This is not achievable otherwise.
5. To get rid of that line, add following CSS codes to Appearance=> Customize=> Theme Options=> Custom CSS and this should work.#footer { border-top: none; }
Regards,
PratikPratikParticipantHI @jascmeen,
Add following code to Appearance=> Customize=> Theme Options=> Custom CSS box.nav-primary .page-menu-wrap ul:first-child { text-transform: uppercase; }
PratikParticipantHi @Cheryl,
In Appearance=> Customizer=> Theme Options=> Font Family Options=> Default Font Family you can change the font family for slider. If you want to change only for slider, then you can do it via Custom CSS. Use following code in Appearance=> Customizer=> Theme Options=> Custom CSS box:#main-slider .entry-content { font-family: "Arial Black", Gadget, sans-serif; }
This will change slider font to Arial Black. Change it to any font family you require.
To decrease size of header, add following CSS code in same place,
#site-title { font-size: 35px; }
You can decrease 25 to further decrease the size.
Let me know how everything works out.
Regards,
PratikPratikParticipantHi @jascmeen,
You can change the Featured Content Text Color by going to Appearance=> Customize=> Color Options=>Featured Content Color Options =>Text Color.Regards,
PratikPratikParticipantHi @radeko,
Since you are already using a child theme, I am going to skip on how to make a child theme.Now to push the header image to the top, add following code to your child theme functions.php file:
/** * Override parent theme Featured Image Display */ function catchresponsive_featured_image_display() { add_action( 'catchresponsive_header', 'catchresponsive_featured_overall_image', 15 ); } // catchresponsive_featured_image_display
Let me know how it works out.
Regards,
PratikPratikParticipanthi @marcodimi,
Clean Box Pro has been derived from Catch Box Pro with a lot of more options.
In Clean Box Pro, you can disable the primary menu as floating menu and use Secondary Menu. This will push the menu below the header image as you have in your site.
About the images before content, we can do it via child theme customization. You can view this image: here.
Let me know if you want anything else.
Regards,
Pratik -
AuthorPosts