Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@adunning: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS, it will fix background of featured content, and gap between headline and menu:
/* Change Background Color of Featured Content */ #featured-post { background-color: #333333; } #featured-post, #primary { padding: 50px; } .no-sidebar-full-width #primary, .woocommerce #primary { width: 90%; } #main { padding: 0; } #homepage-message { margin-top: 0; } #homepage-message p { margin: 0; padding: 20px 0; } @media screen and (max-width: 1020px) { #featured-post, #primary { padding: 30px; } } @media screen and (max-width: 1000px) { #primary { width: 90%; } } @media screen and (max-width: 480px) { #featured-post, #primary { padding: 20px; } } @media screen and (max-width: 320px) { #featured-post, #primary { padding: 15px; } }Reverse positions of the primary menu (across the top) and the headline & sub-headline
Yes, this is possible. For this you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’sfunctions.php, add the following codes.add_action( 'init', 'catcheverest_child_move_menu_below_promotion_headline' ); function catcheverest_child_move_menu_below_promotion_headline(){ remove_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_header_menu', 10 ); add_action( 'catcheverest_before_main', 'catcheverest_header_menu', 10 ); remove_action( 'catcheverest_before_main', 'catcheverest_homepage_headline', 10 ); add_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_homepage_headline', 10 ); }Let me know if any problem.
Regards,
MaheshMahesh
Member@dara-w: Oh, if you haven’t created or assigned any menu to the primary menu, it uses page menu by default. I recommend you to create a menu and assign it to primary menu and it will fix your issue.
Regards,
MaheshMahesh
Member@dara-w: I assume, you have Our work page, and currently your menu item Our Work points to that particular page. But as it is a parent item, you don’t want to link it to any thing right? For that you’ll need to add a custom link. In menu page, you’ll see Custom Menu links, listed along with pages, post, category etc. Click on it then add # in the url field and put a name in the
Link Text field and click on Add to menu button. Remove you current Our Work item from menu and place the new add item in its place then click Save Menu button.
Hope this helps.Regards,
MaheshMahesh
Member@dara-w: Yes, this can be done. For that, you should use Custom link as parent item with URL # and label with your desired text for menu item (Our Work) and then put the other children menu items under it.
Let me know if any problem.Regards,
MaheshMahesh
Member@geosot11: Well, this is beyond my control. I can only suggest you to either upgrade to Pro or Hire customizer/Find a friend who can do the customization to display Posts in Featured Content and Featured Slider instead.
For further, please contact may be they can help you.
https://catchthemes.com/contact-us/Regards,
MaheshMahesh
Member@yogawithagnes: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Member@catch1947: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Member@anidos: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
.sidebar.sidebar-primary { display: none; } .home .sidebar.sidebar-primary { display: block; } #main { width: 100%; } .home #main { width: 820px; } @media screen and (max-width: 1280px) { .home #main { width: 720px; } } @media screen and (max-width: 1152px) { .home #main { width: 680px; } } @media screen and (max-width: 1100px) { .home #main { width: 600px; } } @media screen and (max-width: 990px) { .home #main { width: 100%; } }Mahesh
Member@geosot11: In Clean Journal Free version, there is limit for featured content and featured slider to pages and demo only. For more feature like displaying post, widget, image, category is only available in Pro. I recommend you to upgrade to Clean Journal Pro.
Regards,
MaheshMahesh
Member@brianmor: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
input[type="text"], input[type="email"], textarea { border: 1px solid #cccccc; border-radius: 3px; color: #666666; }Let me know if any problem.
Regards,
MaheshMahesh
Member@gordon30: I checked on the android’s chrome browser and yes the issue exist (two of four images loads in slider). But it is kind of strange, the demo is working fine. Do you have made any changes to the theme file, try disabling all plugins too.
Let me know further.Regards,
MaheshMahesh
Member@adunning: For italics font in Promotion Headline, use the following CSS:
#homepage-message { font-style: italic; }Regards,
MaheshMahesh
Member@oleviolin: Can you please clarify more. And please post in your site url.
Regards,
MaheshMahesh
Member@tdejarnett: In the theme, we do not allow html tags for the security reasons. Another thing you can do to avoid line breakage is increase the width of the slider text content. But it will still cause the breaking for long text. We will try to integrate the feature in the upcoming updates.
Regards,
MaheshMahesh
Member@gordon30: That is kind of a strange, that should not have happened. Have you tested on other devices also? Please test in other devices too and please post in your site url. Is it happening on our demo site too on your device?
https://catchthemes.com/demo/catch-responsive/Regards,
MaheshMahesh
Member@micha:
1. The Id #gallery-(some numbers) is automatically generated by WordPress. The number starts with 1 and increases with each gallery created on that page. If you create another page and create a new gallery there, then it again starts with 1. I traced it out with firebug.2. By default, there is not border in image in gallery, so you can specify border for image in gallery for certain page only like you’ve mentioned above with Id(#)- Specific or with class(.) General. For example
Say if you have two galleries(#gallery-1 and #gallery-2) in page with post-26:
Then with Id it can be done as follows:.post-26.page #gallery-1 img, .post-26.page #gallery-2 img { border: 2px solid #3c3c3c; }or it can be done with class as follows:
.post-26.page .gallery img { border: 2px solid #3c3c3c; }Note: If you have more galleries (say #gallery-3, #gallery-5, ……. #gallery-n) in the same page, the above code will put border in gallery-1 and gallery-2 only. Whereas the below code (one with class) will put border in entire gallery on that page.
Hope this clarifies you.
Regards,
MaheshMahesh
Member@catch1947: Sorry it is not available in this theme. But you can use To Top plugin for that. It is highly customizable. Please find it in the link below:
https://wordpress.org/plugins/to-top/Regards,
MaheshMahesh
Member@susannagable: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#site-branding .site-description { padding-bottom: 0; }Let me know if this helps.
Thank you very much and we really appreciate your feedback.
Please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/clean-box?rate=5#postformRegards,
MaheshMahesh
Member@creativesigns: Upgrading from Free to Pro doesn’t affect your site, all the settings you’ve made in Free theme will be migrated to Pro.
Yes, you can use the Pro version in as many sites as you’ve owned. Please do not use it for third party.
There is the video tutorial on how to upgrade from Free to Pro, please check the link below.
https://www.youtube.com/watch?v=gVvrbKJNfkE
You can follow the same instruction to upload the theme to your other sites.Regards,
Mahesh -
AuthorPosts
