Forum Replies Created
-
AuthorPosts
-
MaheshParticipant
Do you mean to reduce space gap between <p> tag in the content area?
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following:.entry-content p { margin-bottom: 20px; }
Let me know if any problem.
Regards,
MaheshMaheshParticipantHi @dmonserud,
The dashes is added by tinynav jquery plugin used by the theme. That is why you didn’t find it in
catchkathmandu-menus.php
.
First, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’sfunctions.php
, add the following codes:add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_modify_menu' ); function catchkathmandu_child_modify_menu(){ wp_deregister_script('catchkathmandu-menu', get_template_directory_uri() . '/js/catchkathmandu-menu.min.js', array('jquery'), '20140317', true); wp_deregister_script('catchkathmandu-allmenu', get_template_directory_uri() . '/js/catchkathmandu-allmenu.min.js', array('jquery'), '20140317', true); wp_register_script('catchkathmandu-allmenu', get_stylesheet_directory_uri() . '/catchkathmandu-allmenu.js', array('jquery'), '20140317', true); wp_register_script('catchkathmandu-menu', get_stylesheet_directory_uri() . '/catchkathmandu-menu.js', array('jquery'), '20140317', true); }
Then copy
catchkathmandu-allmenu.js
andcatchkathmandu-menu.js
files from Catch Kathmandu (Parent Theme) folder/js to Catch Kathmandu Child theme’s root directory. And in both copied js file, go to line 9 and add number of dashes ‘-‘ in indent option, so it would look as follows:
'indent' : '---- ',
Note: Added 3 more dashes to make 4 as you’ve mentioned above.Let me know if this helped with your issue.
Regards,
MaheshMaheshParticipant@andrewf90: Thank you for your appreciation. Have a nice day!
Regards,
MaheshMaheshParticipantMaheshParticipantHi spacer,
You can update only free theme with Update Now button in the theme’s page. But for pro you’ll need to download the updated theme from your Catch Theme’s Account page.
Please check the video and theme instructions in the link below:
1. Video Tutorial: https://www.youtube.com/watch?v=W95SuabDZi8
2. Theme Instruction (Theme Update) – https://catchthemes.com/theme-instructions/catch-box-pro/#updating
Catch Box Pro’s latest available version is 4.5.2Note: You can download catch updater plugin from link below:
https://catchthemes.com/wp-plugins/catch-updater/There is no problem in updating Catch Box Free version and latest available version in WordPress.org is Catch Box 4.3.6
Let me know if you have any trouble.
Regards,
MaheshMaheshParticipantHi @andrewf90,
This can be achieved with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
.wrapper { max-width: 1260px; }
Let me know if this helps with your issue.
Regards,
MaheshMarch 9, 2016 at 9:56 am in reply to: 3-column featured content shows as single column on mobile platform #87108MaheshParticipantHi @nonno-john,
Yes, this can be done with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#featured-content.layout-three .hentry { float: left; width: 33.33%; }
Regards,
MaheshMaheshParticipantHi @rflores,
This is because, we add the code in child theme’s
functions.php
so that the image’s aspect ratio is maintained and not be cut off to show only the middle part of the image like it had before by default which was your issue. Now if you upload the image, it will be resized to 210px with aspect ratio maintained (if you upload a rectangle image, the resized thumbnail will also be a rectangle not 210px x 210px square).
Hope you understand.Regards,
MaheshMaheshParticipantHi @micha,
Thank you for your appreciation and detailed explanation on how you resolved your issue. Yes, it does help people having similar issues.
If you like my support and Catch Kathmandu theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu?rate=5#postformHave a nice day.
Regards,
MaheshMaheshParticipantHi @sziszi,
Thank you for your appreciation. If you like my support and Simple Catch theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/simple-catch?rate=5#postform
Have a nice day!
Regards,
MaheshMaheshParticipantHi @sziszi,
For displaying post date only, use the following CSS:
#main #content ul.post-by li { display: none; } #main #content ul.post-by li:nth-child(2) { display: block; padding: 0; background: none; }
Regards,
MaheshMaheshParticipantHi @sziszi,
For changing the menu item color and background color, add the following CSS:
#header #mainmenu ul li ul li a:hover, #header #mainmenu ul li ul li:hover > a { background-color: #008000; } #header #mainmenu ul li ul li a { color: #0000ff; }
Note: Please change the color hex value as desired.
Regards,
MaheshMaheshParticipantHi @husker,
As you’ve modified the CSS and made it working with the following code:
@media screen and (max-width: 990px) { #featured-content.layout-three .hentry { width: 100%; } }
Your modified code above will do the job and following code is redundant, so you can remove the following code that I’ve provided you earlier:
@media screen and (max-width: 640px) { #featured-content.layout-four .hentry, #featured-content.layout-three .hentry { width: 100%; } }
Note: Your modified code will make the 3 column featured-content full-width when it is viewed in the screen with display 990px or less (including 640px).
And the code I’ve provided will make the 3 column featured-content full-width when it is viewed in the screen with display 640px or less.Regards,
MaheshMaheshParticipantHi @twincam,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box.
In your theme’s Custom CSS, you have the following, I don’t know why have you put it there, please remove it.#branding .sidebar-header-right .widget_text"> <div class="textwidget"><a href=http://www.nexusnet.uy target=_top><img src=/wp-content/uploads/2016/03/contacts2.png border=0></a></div>
And for aligning the logo image vertically center, add the following CSS:
@media screen and (min-width: 941px) { #site-logo img { margin-top: 30px; } }
Let me know if this fixes your issue.
Regards,
MaheshMaheshParticipantHi salanthonyc,
Thank you for using Simple Catch Pro.
In the theme, there is no such feature as choosing certain post to appear in the home page, you’ll need to hire a customizer. But there is a feature to display the posts of certain categories(posts from categories of your choices) in the home page. For this, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Homepage/Frontpage Category Setting” and select you desired categories from Front page posts categories.Regards,
MaheshMaheshParticipantI checked the url and currently, the text “Vi er snart klare!” is being displayed. Can you please clarify issue little further.
Regards,
MaheshMaheshParticipantHi @husker,
Earlier, I provided the CSS as you wanted the columns to be 25% on right and left and 50% on the middle. But now, all your columns are equally divided. And you don’t need that style, so I suggested you to remove it.
Regards,
MaheshMaheshParticipantHi @lygiahuan,
Sticking with your first option, for spreading out the menu evenly, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
.menu-item { text-align: center; width: 16.56%; } #header #mainmenu ul li a { float: none; } .sub-menu .menu-item { text-align: left; width: auto; } #header #mainmenu ul li ul.sub-menu a { display: block; }
Note: You have a missing curly brace at the end in your Custom CSS please add it.
Let me know if this helps with your issue.
Regards,
Mahesh -
AuthorPosts