Forum Replies Created
-
AuthorPosts
-
Mahesh
MemberHi @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,
MaheshMahesh
MemberHi @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,
MaheshMarch 8, 2016 at 10:36 am in reply to: Insert image and set featured image not longer working #87024Mahesh
MemberHi @meekglorious,
Sorry for the late reply. Seems you’ve created new thread with same question in support and @pratik have answered it, I’ll skip this thread.
Regards,
MaheshMahesh
MemberMahesh
MemberMahesh
MemberHi @dschwartzer,
The tag errors shouldn’t have happened as it is automatically inserted by WordPress’s content editor. Have you modified the content in editor in text tab? You’ll need to manually remove the wrong tags in text tag or try changing the text style bold/unbold in visual tab.
Regards,
MaheshMahesh
MemberHi @micha,
Sorry for the late reply.
May be you have made some changes in the MailChimp so you are facing the issue.
For the second question (CSS fixes), add subscribe-info class in the span like follows:
<span class="subscribe-info" style="font-size: 10px;">After you hit the subscribe button you should check your emails for a message from us.</span>Then add the following Custom CSS:
.subscribe-info { float: left; width: 50%; } @media screen and (max-width: 668px) { .subscribe-info { width: 100%; } }Let me know if this helps.
Regards,
MaheshMahesh
MemberHi @gio,
Sorry for the late reply, what seems to be the problem, what do you mean, you don’t have access to translating website? please clarify.
And where did you get the file for the theme?
Please let me know more so I can help you further.Regards,
MaheshMahesh
MemberHi @husker,
I’ve checked your site and CSS, you’ve changed the media rule to max=> 990px and min=> 991 for making the content’s width 33% for desktops and 100% for small devices and looks great. I don’t know why have you put the below line:
#featured-content.layout-three .hentry:nth-child(3n+2) { width: 40%; }you may remove it. And the code I’ve provided you earlier, you can remove it too.
Have a nice day!
Regards,
MaheshMahesh
MemberHi @leoibra,
I checked all of the three links you’ve mentioned above and saw no issue of huge spacing gaps. Can you send me the screenshot of the issue in your site.
Regards,
MaheshMahesh
MemberHi @husker,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
@media screen and (max-width: 640px) { #featured-content.layout-four .hentry, #featured-content.layout-three .hentry { width: 100%; } }Let me know if this fixes your issue.
Regards,
MaheshMahesh
MemberHi @pulsedata,
We will be changing limit from the max featured content 20 to 24 in the next update. Hope it will fix your problem. Please wait for the next update. Thank you for your patience.
Regards,
MaheshMahesh
MemberHi @leoibra,
Can you please clarify more showing the issue with the site link or image.
Regards,
MaheshMahesh
MemberHi @somethingelse,
For overriding theme style, you can use theme’s Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add your desired CSS.
Regenerating new version of page? no its not possible with CSS. May be some plugins is creating the issue. Please try deactivating the plugins and check if it fixes the issue.
Can you please clarify more on the issue with your site url.Regards,
MaheshMahesh
MemberHi @husker,
Just to let you know that the updated version ( Catch Responsive 2.4 ) is now available in WordPress.org. Its 2.4 not 3.4, sorry for the typo.
Have a nice day!Regards,
MaheshMahesh
MemberHi @meekglorious,
Seems you are using Simple Catch Pro, thank you. You posted the support in Catch Responsive Pro’s thread, post the support in relative theme’s thread.
You aren’t able to upload images to the post, what error do you get? Please clarify more so we could help you.
Are you using any plugins? If yes try disabling it all one by one and check if it solves the issue. And you are using a child theme, do you get the same problem with parent theme too?
Let me know if the problem persists.Regards,
MaheshMahesh
MemberHi @husker,
The issue has been fixed in the updated version Catch Responsive 3.4 and is now available in WordPress.org. Please update to the latest version and remove the above CSS fixation.
Thanks for letting us know the issue.Regards,
MaheshMahesh
MemberHi @webmasterpzv,
For making backup of theme setting, you can use the Customizer Export Import plugin from WordPress.org:
https://wordpress.org/plugins/customizer-export-import/Regards,
MaheshMahesh
MemberHi @pg,
For responsive image, you’ll need modify
background-sizeproperty in the above code. Change the codebackground-size : covertobackground-size: containso it would look like following:#promotion-message .section { background-image : url("http://mattfurniture.co.uk/wp-content/uploads/2016/02/matt-furniture-logo-rex.png") !important; background-position: center center; background-repeat : no-repeat !important; background-size : contain; }With this change, the background image will be a bit smaller than what it is now, and it will be responsive.
Regards,
MaheshMahesh
MemberHi @dschwartzer,
Seems that you have modified some code in theme’s
style.css.strong, b { color: #666; font-weight: bold; }The color properties in the above line is causing the issue. I checked Simple Catch theme’s default
style.css. It doesn’t have that color rule.
In your site, you’ve set the color for the text to#000000and its displaying fine in the source<span style=”color: #000000;”>but within the span there is a strong/b tag which is applying the above CSS rule from. That is why the text in<h2>tags are always grey.
Hope this help to resolve your issue.Regards,
Mahesh -
AuthorPosts
