Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantMahesh
ParticipantHi @spacer,
Did the issue start only after the update? On our server, there is no such problem, theme is working normally. Please try disabling the plugins and check again. Let me know if the problem persists.
Regards,
MaheshFebruary 22, 2016 at 1:31 pm in reply to: Remove borders around the content boxes and widgets and narrow sidebar #85977Mahesh
ParticipantHi @leoibra,
1. I don’t quite get it what you meant, please clarify.
2. Multiple H1
Also only one H1 per page is old. It was only valid for HTML4.
In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
Catch Evolution Pro theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
But if you really want to change it, you can change it by building child theme and editing it.3. There is no theme option for this. You can use Yoast SEO plugin for this.
Regards,
MaheshFebruary 22, 2016 at 1:21 pm in reply to: Featured Image is showing cut off for each excerpt post on blog page #85976Mahesh
ParticipantHi @kjcornerstoneva,
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’s
functions.php
add the following codes.function manage_image_size() { remove_image_size( 'gridalicious-featured-content' ); add_image_size( 'gridalicious-featured-content', 400, 225, false ); } add_action( 'init', 'manage_image_size' );
Then use Regenerate Thumbnails plugin once to generate thubmnails. You can visit this link for the plugin: https://wordpress.org/plugins/regenerate-thumbnails/
Regards,
MaheshMahesh
ParticipantHi @spacer,
Can you please clarify more with your site url and screenshot (if possible).
Regards,
MaheshMahesh
ParticipantHi @studiodimare,
Its quite strange that you are facing the issues in your server, the theme and the options are working fine on ours. We have to check further in your server. We will contact you through email for details.
Regards,
MaheshMahesh
ParticipantPlease use the following CSS:
#main article:last-of-type { margin-bottom: 50px }
Note: Please change the value as required.
Regards,
MaheshMahesh
ParticipantHi @ciglianoweb,
Thank you for your suggestion.
Its not quite sure that whether Alexa ID verification will be included in Theme Options in future release or not. You can use Catch Web Tools for that very feature. You can find it in the following link:
https://wordpress.org/plugins/catch-web-tools/Regards,
MaheshMahesh
ParticipantHi @husker,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#mobile-header-left-menu { float: right; } .mobile-menu-text { display: inline-block; vertical-align: top; }
Regards,
MaheshMahesh
ParticipantHi @husker,
Just checked your site, seems you’ve managed to change the footer content.
Have a nice day!Regards,
MaheshFebruary 22, 2016 at 10:55 am in reply to: Featured content, Text widget, Promoheadline, Languages #85965Mahesh
ParticipantHi @scubafreak,
Oh great to know you’ve been here and thank you for all your helps. 🙂
Glad you enjoyed you time here, hope you’ll visit us again.
Yes it was difficult time for all due to earthquake. People are gradually going back to their normal living.
The steps you’ve gone through is all you need to translate theme, its quite odd that nothing changed. Please use WPML or qtranslate plugins and try again.
Let me know if any problem.Regards,
MaheshMahesh
ParticipantHi @catchemall,
Did you create the child theme manually or with the help of some plugins?
Just checked your site, in your site, you are still using parent theme’sstyle.css
and there is nothing in child theme’sstyle.css
. To achieve your requirement i.e. disabling mobile version compeletely, you have to only enqueue child theme’sstyle.css
and use the above css I’ve given. If the problem still persists, remove all the functions from child theme’sfunctions.php
and check again.Let me know if any problems.
Regards,
MaheshMahesh
ParticipantHi @andyb531,
How are you? Hope you had a nice weekend.
Thank you for your appreciation.
Normally, JetPack Custom CSS loads last.Regards,
MaheshMahesh
ParticipantHi @sparta,
I’m glad that you’ve found the solution by yourself. The issue you were have was a bit odd. There should not have been the issue with the demo slider. May be some plugins if you are using is creating the issue.
Regards,
MaheshMahesh
ParticipantHi @sparta,
I’m glad that you found the solution by yourself. The issue you were have was a bit odd. There should not have been the issue with the demo slider. May be some plugins if you are using is creating the issue.
Regards,
MaheshMahesh
ParticipantHi @andyb531,
In Gridalicious theme, disc style is used for list items by default. To remove the list style from page-links please go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
ul.page-links li { list-style: none; }
If you want to remove list style from the whole site, use the following CSS.
.entry-content ul > li, .sidebar ul > li, #supplementary ul > li { list-style: none; }
Regards,
MaheshMahesh
ParticipantHi @spyglass9er,
You mean the primary menu right? I tested your site in desktop and mobile, and menu is working fine on both.
Regards,
MaheshMahesh
ParticipantHi studiodimare,
Have you modified any codes? If not try disabling the plugin(all) if you are using some.
Options with hiding property is a bit tricky in Customizer. The option will only be shown if the condition is satisfied for the page you are currently viewing in the right window. When you change enable option to Entire Site or Homepage/Frontpage, other option will be shown after a while as soon as the page refreshes and load completely.
Please try again and let me know if the issue persists.Regards,
MaheshMahesh
ParticipantHi @sziszi,
That is because you are using excerpt and in excerpt view all html tags will be removed. Please use full content instead. For this, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options” then select Show Full Content (No Featured Image) in Archive Content Layout.
Regards,
MaheshMahesh
ParticipantHi riccrom123,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
#header-menu ul.menu a { line-height: 2.5em; }
Regards,
Mahesh -
AuthorPosts