Forum Replies Created
-
AuthorPosts
-
Hey Mariken,
I took a look but I don’t see anything wrong right off, even the theme options look fine.
Perhaps if you could add a screenshot of what you see is wrong it would be easier to notice.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
and the video tutorials here
And if there are features that you wish Enfold had, you can request them and vote the requested ones here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Well it seems the only page that has the issue is the homepage because of the transparent header, so let’s add this code to the end of your css, or at least after the other code:@media only screen and (max-width: 766px) { .responsive #top.home #main {margin-top: -80px!important;} }It will only work on the homepage.
Best regards,
MikeHi,
Very good, unless there is anything else we can help with shall we close this then?Best regards,
MikeHi,
Please read this good article and video: How to use FTP WordPress for BeginnersBest regards,
MikeHi,
To change the hover color, try:#top #wrap_all .av-social-link-facebook:hover a,#top #wrap_all .av-social-link-pinterest:hover a,#top #wrap_all .av-social-link-mail:hover a { color:#fff; background-color:#857949 !important; }To add some padding, try:
.av-social-sharing-box { padding-top: 50px !important; }adjust the number to suit.
Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:div .main_color .avia_ajax_form .button { background-color: #1b1166!important; }Best regards,
MikeHi,
The “custom class” box that you had put your code in is for a name of a class, not for code.
So for example, I gave your button a custom class name “booknu”
and then I added this code in the General Styling > Quick CSS field:.booknu a { border-radius: 5px !important; }I gave it the border-radius of 5px because 1px is so little I don’t believe we could see the difference.
I also gave it the “!important;” so it would overwrite the theme’s rules.
Please clear your browser cache and check.Best regards,
MikeHey VCS33,
If I understand correctly, you didn’t try to do this, but you like it, other than the “missing” image placeholder?
Please include the url to the page in question so we can take a closer look.Best regards,
MikeHey friefodspor,
It may have been disabled in wp-config.php
open wp-config.php in a text editor via ftp and look for:define( 'DISALLOW_FILE_EDIT', true );change to false.
I didn’t see any of the regular plugins that add this on your site, so perhaps it was added by your WordPress install script on your webhost?Best regards,
MikeHey Andrew,
Thank you for sharing, can you please explain how we can see this error, so we can forward to the dev team, they will want to reproduce this.Best regards,
MikeHey friefodspor,
I took a look at your site, but didn’t see the social share buttons on your posts, perhaps they were disabled when I looked, so I assume they are the Social Share Button Element like the demo.
I wrote this css to work on the default buttons:#top .av-share-box ul,#top .av-share-box ul li { border-style: none!important; border-width: 0px!important; } #top .av-share-box ul li a { border: none!important; height: 50px!important; width: 50px!important; border-radius: 100%; padding: 15px!important; margin: auto !important; background-color: #74b86b; } #top .av-share-box ul li a[data-av_icon]:before { color: #fff !important; }Best regards,
MikeApril 8, 2018 at 9:57 pm in reply to: Hover and active colors for menu items different for each page #938891Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.
For your information, you can take a look at Enfold documentation here
and the video tutorials here
And if there are features that you wish Enfold had, you can request them and vote the requested ones here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Good to hear, you can use just one or the other, if the code block is working, then use it. I like to put as much as I can in the answers because other people will read this months from now. This is also why I added the note about unchecking the lightbox modal effect, because it is the only way I could get it to work on my localhost, and when testing on your site I assumed you already had it unchecked. Is this true?
But to answer you, yes unchecking the lightbox modal effect will effect other elements on your site.Best regards,
MikeHi,
Very good, and congratulations on your launch :)
When you do have time and if you have a question about the child theme, perhaps you could open a new thread with “child theme” in the title. This one is getting very long now and hard to follow.Best regards,
MikeApril 8, 2018 at 9:40 pm in reply to: Enfold Child YITH plugin Request for a Quote button not showing. #938888Hi,
Thank you, we look forward to the results of your tests.
Have a great day :)Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.
For your information, you can take a look at Enfold documentation here
and the video tutorials here
And if there are features that you wish Enfold had, you can request them and vote the requested ones here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Also to move the breadcrumbs over, please try:div.breadcrumb.avia-breadcrumbs { right: 10%!important; }feel free to adjust 10% to suit, perhaps 8%
Best regards,
MikeHey brand4,
It look like you have the breadcrumb color set in your css with the “!important;” making it hard to overwrite. Please look in your custom css for:.title_container .breadcrumb { color:#888888!important; font-size:13px; }and change the color to what you would like to see.
But this is not the whole breadcrumb, you also need to add:.alternate_color .breadcrumb, .alternate_color .breadcrumb aso the complete code would look like this:
.title_container .breadcrumb,.alternate_color .breadcrumb, .alternate_color .breadcrumb a { color:#888888!important; font-size:13px; }If you can’t find it in your css you can try this, as I tried to overwrite the previous rule:
#top #wrap_all #main .title_container .breadcrumb,.alternate_color .breadcrumb, .alternate_color .breadcrumb a { color:#e2e2e2!important; font-size:13px; }Best regards,
MikeHey brand4,
Try this code in the General Styling > Quick CSS field:.main_color blockquote { border-color: #efbb20 !important; }I couldn’t find the blockquote in use on your site, so I had to guess a little, if this doesn’t work please link directly to the page.
Best regards,
MikeHey miss_s,
Try this code in the General Styling > Quick CSS field:.avia-tooltip.avia-tt { display: none !important; opacity: 0 !important; }If this doesn’t work, please include the url to the page in question so we can take a closer look.
Best regards,
MikeApril 8, 2018 at 8:37 pm in reply to: contact form css styling custom font, button and text input #938872Hi,
Try this code in the General Styling > Quick CSS field:#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select { border-color: transparent!important; background-color: #d6d5d5!important; color: #000!important; } div .main_color .button { background-color: #5e5e5e!important; color: #ffffff!important; border-color: #5e5e5e!important; } div .main_color .button:hover { background-color: #2b2b2b!important; color: #ffffff!important; border-color: #2b2b2b!important; }Best regards,
MikeHi,
Please try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeHey inekespijker,
This looks like an error due to your PHP version 5.4.16, please try asking your webhost to update your PHP to version 7Best regards,
MikeApril 8, 2018 at 8:13 pm in reply to: Enfold Child YITH plugin Request for a Quote button not showing. #938868Hi,
I found that for the plugin “request a quote” on it’s setting page, it was set to only show to logged-in users, I changed to guest & logged-in, and now it shows on the standard product pages (Without-avia-editor)
I also found that the plugin hooks to the cart form, so when you use the avia-editor to build your shop page you will not have the option to add the “request a quote” button because the avia-editor cart button doesn’t include all of the hooks.
Please note the message at the top: “Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions”
So you will need to use the standard product page to use this plugin.Best regards,
MikeHey isaaccolavecchio,
I can see all of the images are off to the left,
Try this code in the General Styling > Quick CSS field:#top.page-id-1012 .flex_column { text-align: center!important; }Best regards,
MikeHey Savemybooks,
Can you please include a admin login and a link to a page with parallax in the private content area so we can take a closer look.Best regards,
Mike -
AuthorPosts


