Forum Replies Created
-
AuthorPosts
-
August 2, 2017 at 11:56 pm in reply to: formatting / changing look and wording of category appearence #120008
Mahesh
Participant@dsm: Seems the CSS format is in
.page-header
so its overriding<h2>
tags format. Please add the following CSS in Dashboard=> Appearance=> Customize.page-header { font-size: 20px; }
Note: Please adjust font-size as required.
Regards,
MaheshAugust 2, 2017 at 3:21 am in reply to: formatting / changing look and wording of category appearence #119971Mahesh
Participant@dsm: For that, copy
archive.php
to your child theme folder. Then replace h1 with h2 in line 21 ofarchive.php
. So it displays as following:
the_archive_title( '<h2 class="page-title">', '</h2>' );
Regards,
MaheshMahesh
Participant@solo_maxximus: Is your issue fixed? Let me know if any problem.
Regards,
MaheshMahesh
Participant@masterchess: Yes, sure. Let me know if any problem.
Regards,
MaheshMahesh
Participant@solo_maxximus: Please use Background Image widget for that. Hope that helps you.
Regards,
MaheshMahesh
Participant@neobrainless: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/rock-star/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshMahesh
Participant@ve3eby: Please use border-color instead.
hr {
border-color: #ffa500;
height: 15px;
}Regards,
MaheshMahesh
Participant@solo_maxximus: Please post in your site url.
Regards,
MaheshMahesh
Participant@masterchess: Please post in your site url.
Regards,
MaheshMahesh
Participant@slee: This falls beyond theme support scope. I recommend you to hire a customizer.
Regards,
MaheshJuly 30, 2017 at 5:14 am in reply to: formatting / changing look and wording of category appearence #119814Mahesh
Participant@dsm: For this, you’ll need to create a child theme. You can find more on creating child theme HERE. Then, in you child theme’s
functions.php
add the following codes.add_filter( 'get_the_archive_title', function ( $title ) { if( is_category() ) { $title = single_cat_title( '', false ); } return $title; });
Regards,
MaheshMahesh
Participant@markusk: Are you using free version? This option is available in Pro version. I recommend you to upgrade to Pro version.
Regards,
MaheshMahesh
Participant@neobrainless: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following:
.site-logo img { max-height: 250px; } /* For Sticky */ .is-sticky .site-logo img { max-height: 100px; }
Note: Please adjust the max-height as desired
Regards,
MaheshMahesh
Participant@7wuefv: I hope I was able to resolve your issue. Would you mind taking a few minutes to write a review for me please?
https://wordpress.org/support/theme/catch-base/reviews/#new-post
I’d really love to know what you think of my support. Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve.
Thank you so much for your help!Regards,
MaheshMahesh
Participant@daniel98: Could you please check by switching the theme to WordPress core theme(TwentySeventeen) and check if the problem persists. If the problem occurs in core theme too, this is not a theme issue. Let me know further.
Regards,
MaheshMahesh
Participant@neobrainless: For that, you can use bigger size logo image.
@greyedevil75: You can find color options in Rock Star Pro version. I recommend you to upgrade to pro.Regards,
MaheshJuly 23, 2017 at 11:32 pm in reply to: Menu in the header ? inserting an image between main menu and secondary menu ? #119517Mahesh
Participant@infonet: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/catch-box/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.Regards,
MaheshMahesh
Participant@catwingz: Go to Dashboard=> Appearance=> Customize=> Color Options=> Promotion Headline Color Option and change Background Color. If you have changed the color through Custom CSS, this won’t work as Custom CSS will override the option. First remove the previous Custom color from Custom CSS. Or Go to Dashboard=> Appearance=> Customize=> Custom CSS and add the following CSS.
aside#promotion-message { background-color: #493a1e; }
Regards,
MaheshMahesh
Participant@7wuefv: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#header-content { position: relative; } #sidebar-header-right { position: absolute; bottom: 30px; right: 0; }
Regards,
MaheshMahesh
Participant@neobrainless: Go to Dashboard=> Appearance=> Customize=> Site Identity and upload your desired logo. Then make use to uncheck Display Site Title and Tagline option.
Regards,
Mahesh -
AuthorPosts