Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@nicolaslhtr: The theme features only one Promotion button by default, for more buttons please customize. And similar for text over the image. You’ll need to customize the theme further via child theme. You can find more details on creating child theme HERE. If you are not familiar with programming, I recommend you to hire a customizer as this falls beyond our theme support scope.
Regards,
MaheshMahesh
Participant@dosk: Okay with that image, finally understood where your problem was, thanks for the clarification. Please add the following CSS:
a:focus { outline: 0; }
Regards,
MaheshJune 27, 2017 at 11:22 pm in reply to: Add translation for "Leave a comment" and "% Comments" links on top of posts #118229Mahesh
Participant@jcmoch: The update has been released. Please update.
Let me know if any issue.Regards,
MaheshMahesh
Participant@jcmoch: The update will be released today. Last time I had installed updated the theme on your site.
Regards,
MaheshMahesh
Participant@nicolaslhtr: Where actually is this occurring? Slider or main content? If slider, please use larger image with width of 1080p. For content area, add the following CSS:
#content .hentry { padding: 10px; }
Regards,
MaheshMahesh
Participant@dosk: Add the following CSS for color:
#menu-toggle { background-color: #fff000; color: #ff00ff; }
I just checked your site and the dotted borders are now gone.
Note: Change the colors as desired.
Let me know if any problem.
Regards,
MaheshMahesh
Participant@pjballantine: For Site title color, go to Dashboard=> Appearance=> Customize=> Color Options=> Header Colors and alter Header Text Color. And for menu, go to Dashboard=> Appearance=> Customize=> Color Options=> Primary Menu Colors and alter Color and Hover/Active Text Color.
Let me know if any problem.
Regards,
MaheshMahesh
Participant@dosk: For changing menu color, go to Dashboard=> Appearance=> Customize=> Color Options=> Primary Menu Color Options.
For removing the dotted border and change font, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
/* Change font family */ .main-navigation a { font-family: "Times New Roman"; } /* Remove dotted border */ #menu-toggle:focus { outline: 0 }
Note: Please use your desired font family.
Regards,
MaheshMahesh
Participant@pjballantine: Please post in your site url.
Regards,
MaheshMahesh
Participant@nicolaslhtr: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.container { width: 100%; } #site-generator .site-info { padding: 30px 10px; }
Regards,
MaheshMahesh
Participant@jcmoch: Have you installed the new copy of the theme again? Let me know further.
Regards,
MaheshMahesh
Participant@mbcla-pro: Do you get any error beside “Theme install failed”? Do you have any other plugins apart from Catch Web Tools? If yes, try disabling theme and try again. Let me know if the problem persist.
Regards,
MaheshMahesh
Participant@mmariaperlo: Your site is currently under maintenance. Let me know further and please specify which text too.
Regards,
MaheshMahesh
Participant@jessolo: We’ll have to check on your server to find the issue. We’ll contact you shortly via email.
Regards,
MaheshMahesh
Participant@mmariaperlo: 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/simple-catch/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@lehii17: Do you mean the mobile menu that slides from left? Let me know further.
Regards,
MaheshJune 21, 2017 at 7:59 am in reply to: Clean Journal theme (Free) Font change after Failed WordPress Backup and Update #117909Mahesh
Participant@wordaz: Go to Dashboard=> Appearance=> Customize=> Custom CSS box and add the following CSS:
body, button, input, select, textarea {line-height: 1.3; } body ul li, body ul li a, body ol li, body ol li a, body .entry-content ul li, body .entry-content ul li a, body .entry-content ol li, body .entry-content ol li a { font-family: Roboto,Helvetica,Arial,sans-serif; font-size: 15px; }
Regards,
MaheshMahesh
Participant@nickcoromelas: Remove logo image just when it responses to mobile?
Add the following CSS:@media screen and (max-width: 990px) { #site-branding { display: none; } }
Parallax menu. In the desk top version I want a single page scroll.
For this you’ll need to use have Custom Links menus. Then use following url for “Power User”
http://www.nickcoromelas.com/#logo-slider
.You are using static home page, and currently the Nick Coromelas page is selected as Front page, its from that page. Please select the page which you want to be displayed in homepage. For this, go to Dashboard=> Appearance=> Static Front Page.
For changing position, you’ll need to create child theme and customize, tell me where exactly you want to shift position, and I’ll provide you with the code. If you are not familiar with programming, I strongly recommend you to hire a customizer.
You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following code:
function parallax_frame_child_move_to_footer(){ remove_action( 'parallax_frame_before_content', 'parallax_frame_hero_content_display', 20 ); add_action( 'parallax_frame_after_content', 'parallax_frame_hero_content_display', 40 ); } add_action( 'init', 'parallax_frame_child_move_to_footer' );
Note: It will move hero content to the bottom, just above the footer.
Regards,
Mahesh -
AuthorPosts