Hi @inazioj,
I hope you are well today and thank you for your question.
I tried to visit your shared site but it keeps displaying Loading.. message so i can’t.
Could you please share me the screenshot where you want to add nofollow attribute to links so that i can help you?
Best regards,
Shufflehound team
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
span.sh-accordion-title {
font-family: 'Amatic SC', cursive;
font-size: 1em;
}
.sh-accordion .panel .panel-collapse .panel-body {
background-color: transparent;
}
Please try using the below CSS code to remove it inside post.
body.single-post a.post-title,
body.single-post .post-meta-data {
display: none !important;
}
Hi Marcin,
I hope you are well today and thank you for your question.
Yes the shared code is fine but if it doesn’t work for you then could you please share me your site URL where it’s happening so that i can troubleshoot it?
Best regards,
Shufflehound team
You are most welcome here 🙂
This can be due to plugin conflict on your site so please try temporary deactivating all plugins except Unyson plugin and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Then please temporary disable the autoptimize cache plugin on your site.
Solution for this topic
To achieve this try using the below CSS code.
.sh-portfolio-overlay4 .sh-overlay-item {
display: none;
}
.sh-portfolio-overlay4 a:first-child {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
I could confirm the issue on my test site using Heading Animation Element enabling RTL support therefore notified the theme developer about this so that it will be fixed.
The issue will be fixed ASAP.
Hi Reuben,
I hope you are well today and thank you for your question.
We can achieve this by developing custom CSS code.
Could you please share me the page URL from your site where it is displaying so that i can help you to achieve it?
Best regards,
Shufflehound team
Awesome great to see you got that achieved.
Please advise if you have more questions.
Have a fantastic day!
So, what are you trying to say by that?
I am again telling you that it is a part of theme contact form styles.
You’ve hidden form’s labels deliberately?
Yes
In code excerpt that you’ve shown,
I don’t see any mention about form style 5 but only style 2.
And let me remind you that we’re talking about issue with form style 5 .
I have only shared you small code part of style2 as it is large code so i didn’t share all the code of all styles but if you want to see it then you can in the theme file /jevelin/framework-customizations/extensions/forms/extensions/contact-forms/shortcodes/contact-form/static.php
I can see on your site you have linked your menu items like #aboutus but instead use full URLs for the links like http://amandamonaghan.ca/#aboutus
Hi @Devuser34,
I hope you are well today and thank you for your question.
I visited your shared site and got the following error and you can see in the error it is caused by WPML plugin file and not theme.
Fatal error: Uncaught Exception: Error upgrading schema for table "icl_languages": in /wp-content/plugins/sitepress-multilingual-cms/inc/upgrade-functions/upgrade-3.3.7.php:54
We only provide here theme related support and not plugin. Please see here https://themeforest.net/item/jevelin-multipurpose-premium-responsive-wordpress-theme/14728833/support
Best regards,
Shufflehound team
Where are you using it? On single page or single post?
Could you please share me the page URL from your site where it is not displaying correctly so that i can troubleshoot it?
It is working fine for me when i use it in browser inspector.
I visited your shared site but didn’t see the shared code anywhere.
If you are using any cache on your site like autoptimize then after using the CSS code please clear the cache and also the browser cache.
It seems this happens on iPhone safari browser if the form input fields have font size less than 16px http://stackoverflow.com/a/6394497/1287548
So to resolve the issue we can increase font size to 16px by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
body.home .contact-form input[type="text"] {
font-size: 16px;
}
You can share me your site log in details privately by adding them in the below box having text “Click here to share private content. Only you and forum moderators will bee able see it.”.
I don’t have iPad so tested it on iPad simulator and it is working fine for me.
I have also asked my colleague to test it on iPad device and i hope he will reply soon.
If it is working fine on Jevelin demo site thes please see whether there is any misconfiguration or conflict on your site which is causing this issue.
Please try changing header style.
This can be due to plugin conflict on your site so please try temporary deactivating all plugins and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
It seems this is happening because of em unit used in the padding of menu.
You can try resolving this issue by changing unit to px by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.sh-nav li.menu-item {
padding: 0 71px 0 0;
}