Forum Replies Created
-
AuthorPosts
-
Mahesh
MemberHi @husker,
I checked your link in desktop and iPhone, and the images is appearing in the middle of the cell in both. Seems it is working fine.
Regards,
MaheshMahesh
MemberHi @minhbkx,
Seems you are using plugins for displaying social button, please contact the plugin’s support. This is not the theme issue. The issue is due to plugin’s CSS.
Regards,
MaheshMahesh
MemberHi @martha,
Since you are not able to access your site, you’ll need to follow one of the following:
1. Contact your server and restore your site’s last running state
2. Access the file through FTP and rename the theme folder catch-box to some other name and your site will automatically use other installed theme. Then you can access your site.
3. With FTP access you can replace the your old catch-box theme folder with the updated version found in link below:
bit.ly/catchbbox435
Note: For manually installing using FTP, please follow the instruction in the LINKIf you have any trouble with above, let me know.
Regards,
MaheshMahesh
MemberHi @kigazw, @baneff, @eslgamesbox, @fredda,
We have pushed the update to WordPress.org repo, hope it will be available soon. You can also manually download the updated copy in the following link:
bit.ly/catchbbox435
Sorry for the trouble.Regards,
MaheshMahesh
Memberhi @blogtunes,
Yes, you can include RSS-feedburner into that location. Go to “Dashboard=> Appearance=> Customize=> Menus=> Social” and click Add Items , form appears sliding to the right. Add your RSS feed url (http://www.blogtunes.de/feeds/) in URL text field and RSS in Link text field. Click save, then RSS feed url will appear in the desired section.
Regards,
MaheshMahesh
MemberThis is an issue in the theme when nothing is saved in the post slider id in “Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options”. For now as a temporary solution put 0 in #1 Featured Post ID and save it. We are working to fix the issue. It will be fixed in the next issue.
Regards,
MaheshMahesh
MemberHi gio,
Thank you for your contribution. We are glad that you want to help more on that. Translation to italian is about 84% completed. We do need your help to make it 100%. 🙂
For updating Pro version, we recommend you to use Catch Updater Plugin.
You can find the tutorial video for using Catch Updater Plugin in the link below:
https://www.youtube.com/watch?v=W95SuabDZi8Regards,
MaheshFebruary 28, 2016 at 9:53 am in reply to: Menu and Child Menu background Color Across Devices #86435Mahesh
MemberHi @husker,
You’ll need to add some style for mobile menu too. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#header-left-nav { background-color: #cc0c2f; } #header-left-nav li.menu-item > a { color: #fff; } #header-left-nav li.menu-item ul.sub-menu li > a { color: #000; } #header-left-nav li.menu-item ul.sub-menu li { background-color: #bbbbbb; } #header-left-nav li.menu-item:hover > a, #header-left-nav li.menu-item ul.sub-menu li:hover > a { background-color: #fff; color: #cc0c2f; }Regards,
MaheshMahesh
MemberHi myinah,
Please add the following CSS:
#main-slider .featured-slider .slides .entry-container { display: none; }Regards,
MaheshMahesh
MemberHi @micha,
1. Background color for price code table only.
You are using the following codes for styling table:table { background-color: #eaeaea; -webkit-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); -moz-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); padding: 0 5px; padding: 0rem 0.5rem; vertical-align:middle; } .table tr { height: 10px; }This is generic i.e. all the elements in the site will have same rule (your current issue ).
To over come this, give the table an id or class. For example:
<table id="price-code" class="custom-bg-color">
And use the following CSS instead for that specific table only:table#price-code, table.custom-bg-color { background-color: #eaeaea; -webkit-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); -moz-box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); padding: 0 5px; padding: 0rem 0.5rem; vertical-align:middle; } table#price-code tr, table.custom-bg-color tr { height: 10px; }To clarify you more on class and id, id is used if you need it for only one element. Id must be unique for each element. And class can be used for styling multiple elements with same style. In the above code I’ve used both id and class. If you want to add background to other tables in you site too then just add class attribute to that table as class=”custom-bg-color” and it’ll work.
2. And for sticking form to the right of the image, add the following CSS:
table.ebook-eco-lodges td { vertical-align: middle; }Let me know if any issue.
Regards,
MaheshMahesh
MemberHi @dougdavis22,
Have you made any changes to the theme files or modified any codes?
Regards,
MaheshMahesh
MemberMahesh
MemberHi @chicadita,
Glad to know you were able to fix you issue.
Catch Box free version does have Custom CSS option. You can find it in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS”.
For making first column more narrow than the other two, add the following CSS:.entry-content table tr td { width: 40%; } .entry-content table tr td:nth-child(1) { width: 20%; }Note: Adjust the width as you desire.
Regards,
MaheshMahesh
MemberHi @calmo16,
Thank you for your appreciation. If you like my support and Clean Box theme then please support by providing your valuable review and rating at
https://wordpress.org/support/view/theme-reviews/clean-box?rate=5#postformHave a nice day!
Regards,
MaheshMahesh
MemberHi @isabella,
For aligning the footer area to the center, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
.home #supplementary .widget-area { float: none; }Regards,
MaheshMahesh
MemberHi @calmo16,
For making logo below menu non-responsive, add the following CSS:
#site-logo img { max-width: none; width: 1200px; }Regards,
MaheshMahesh
MemberMahesh
MemberHi @corkiesmom,
You’ll need to create a child theme for that. You can find more details on creating child theme HERE. Then in your child theme’s
functions.phpadd the following code and it will remove the links from the slider image.function catchresponsive_page_slider( $options ) { $quantity = $options['featured_slide_number']; $more_link_text = $options['excerpt_more_text']; global $post; $catchresponsive_page_slider = ''; $number_of_page = 0; // for number of pages $page_list = array(); // list of valid page ids //Get number of valid pages for( $i = 1; $i <= $quantity; $i++ ){ if( isset ( $options['featured_slider_page_' . $i] ) && $options['featured_slider_page_' . $i] > 0 ){ $number_of_page++; $page_list = array_merge( $page_list, array( $options['featured_slider_page_' . $i] ) ); } } if ( !empty( $page_list ) && $number_of_page > 0 ) { $get_featured_posts = new WP_Query( array( 'posts_per_page' => $quantity, 'post_type' => 'page', 'post__in' => $page_list, 'orderby' => 'post__in' )); $i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++; $title_attribute = the_title_attribute( array( 'before' => __( 'Permalink to: ', 'catch-responsive' ), 'echo' => false ) ); $excerpt = get_the_excerpt(); if ( $i == 1 ) { $classes = 'page pageid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'page pageid-'.$post->ID.' hentry slides displaynone'; } $catchresponsive_page_slider .= ' <article class="'.$classes.'"> <figure class="slider-image">'; if ( has_post_thumbnail() ) { $catchresponsive_page_slider .= get_the_post_thumbnail( $post->ID, 'catchresponsive-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'attached-page-image' ) ); } else { //Default value if there is no first image $catchresponsive_image = '<img class="pngfix wp-post-image" src="'.get_template_directory_uri().'/images/gallery/no-featured-image-1200x514.jpg" >'; //Get the first image in page, returns false if there is no image $catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, 'catchresponsive-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'attached-page-image' ) ); //Set value of image as first image if there is an image present in the page if ( '' != $catchresponsive_first_image ) { $catchresponsive_image = $catchresponsive_first_image; } $catchresponsive_page_slider .= $catchresponsive_image; } $catchresponsive_page_slider .= ' </figure><!-- .slider-image --> <div class="entry-container"> <header class="entry-header"> <h1 class="entry-title"> <a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a> </h1> <div class="assistive-text">'.catchresponsive_page_post_meta().'</div> </header>'; if( $excerpt !='') { $catchresponsive_page_slider .= '<div class="entry-content"><p>'. $excerpt.'</p></div>'; } $catchresponsive_page_slider .= ' </div><!-- .entry-container --> </article><!-- .slides -->'; endwhile; wp_reset_query(); } return $catchresponsive_page_slider; }Regards,
MaheshMahesh
MemberHi @husker,
For the above changes:
1. Edit the page with that text, go to content text tab and find the line
<p>Scroll left and right to view all</p>
And replace it with the following
<p class="mobile-display">Scroll left and right to view all</p>
Then click update.2. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS”
.mobile-display { display: none; } @media screen and (max-width: 768px) { .mobile-display { display: block; } }Note: Follow step for all pages with “Scroll left and right to view all” text
Regards,
MaheshMahesh
MemberHi @isabella,
Thank you for using Catch Everest Pro.
I recommend you to use Widget Visibility control plugins such as Jetpack’s Widget Visibility or Widget Visibility plugin etc. Or you may use any plugins from WordPress.org plugins repo with similar feature. And then use the widget to display your desired image in home page only.Regards,
Mahesh -
AuthorPosts
