Forum Replies Created
-
AuthorPosts
-
February 11, 2018 at 4:17 pm in reply to: Target all images except from one with a custom CSS #910754
Hi,
Please try:.page-id-287 .avia-image-container-inner a,.page-id-78 .avia-image-container-inner a,.page-id-112 .avia-image-container-inner a,.page-id-239 .avia-image-container-inner a,.page-id-445 .avia-image-container-inner a { box-shadow: 0px 0px 20px #D9DCDE!important; } .page-id-287 .avia-image-container-inner a:hover,.page-id-78 .avia-image-container-inner a:hover,.page-id-112 .avia-image-container-inner a:hover,.page-id-239 .avia-image-container-inner a:hover,.page-id-445 .avia-image-container-inner a:hover { box-shadow: 0px 0px 5px #CACDCE!important; } .page-id-287 .avia-image-container-inner img,.page-id-78 .avia-image-container-inner img,.page-id-112 .avia-image-container-inner img,.page-id-239 .avia-image-container-inner img,.page-id-445 .avia-image-container-inner img { box-shadow: 0px 0px 20px #D9DCDE!important; } .page-id-287 .image-overlay,.page-id-78 .image-overlay,.page-id-112 .image-overlay,.page-id-239 .image-overlay,.page-id-445 .image-overlay { visibility: hidden!important; }Please clear any cache plugin and your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
I have imported the Consulting Demo and all is working, Please clear your browser cache and check.
Thanks a lot for your patience and for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. If you have any issues please start a new thread we are happy to help. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. If you have any issues please start a new thread we are happy to help. Thank you for using Enfold.Best regards,
MikeFebruary 11, 2018 at 12:48 am in reply to: Website switched to Enfold, now "Duplicate Content" problem #910692Hey Kirchmann-Peter,
The http://jakobsweg-lebensweg.de/beitrag/ is a archive page for your categories, this is a normal wordpress function. Here is some more about Category Pages Typically category pages show posts with the same tags to each other.Best regards,
MikeHi,
I was not able to use the alternative method to import the demo, so I can manually import the demo but I will need database access. Please include cPanel login in the Private Content area.
The ftp access didn’t work for me, I believe my USA IP is blocked, but cPanel access will also allow me to upload the files necessary.Best regards,
MikeHey rbellei,
Please try importing the layerslider demo with the link in the Private Content area.
If this doesn’t work, please include the url to your site and ftp access in the Private Content area.Best regards,
MikeHi,
If I recall correctly, Strato blocks either all .at addresses or kriesi.at where the demos come from. If you contact them they will unblock for you, or I can try a alternative way to import.Best regards,
MikeHi,
Can you please include a admin login in the private content area. Importing the demo may cause you to lose all your content and settings, that is ok correct?Best regards,
MikeHey kletterfreak,
Ich bin mir nicht sicher, wer ein Child-Theme für Sie installiert hat oder welches Problem Sie hatten, als wir Ihnen geholfen haben, aber insgesamt wird von WordPress ein Child-Theme empfohlen. Mit einem untergeordneten Thema können Sie Ihrer Website auf sichere Weise Anpassungen und Funktionen hinzufügen, die bei der Aktualisierung des übergeordneten Designs Enfold nicht verloren gehen. Wenn Sie möchten, können wir nachsehen, ob es sicher ist, es zu entfernen, ohne Anpassungen zu verlieren, aber in Zukunft möchten Sie möglicherweise ein untergeordnetes Thema verwenden.
Wenn Sie möchten, dass wir einen Blick darauf werfen, fügen Sie bitte einen Administrator-Login in den privaten Inhaltsbereich ein.I’m not sure who installed a child theme for you or what issue you were having when we helped you, but overall a child theme is recommended by WordPress. A child theme allows you to add customizations and functions to your site in a safe way that will not be lost when you update your parent theme, Enfold. If you would like we could take a look to see if it is safe to remove without losing any customizations, but in the future you may wish to use a child theme.
If you would like us to take a look please include a admin login in the private content area.Best regards,
MikeHey mjadvnt,
WordPress creates some additional sizes based on the size of the image you upload and wp_calculate_image_sizes, such as 768px wide with no height limit.
Read more here: https://make.wordpress.org/core/2015/11/10/responsive-images-in-wordpress-4-4/Best regards,
MikeHi,
Sorry I’m not sure why you would be getting that message. Perhaps I can offer another solution.
If I understand correctly, you would like to install the Enfold 2017 Demo, but you have been getting error messages. Your PHP is version 7.
What is your webhost?
I checked your site, but it doesn’t look like you have Enfold activated, it appears to be “BROOKLYN THEME BY UNITED THEMES”Best regards,
MikeHi,
Thank you for sharing your solution, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
To resize your language and weather fonts, Try this code in the General Styling > Quick CSS field:#avia2-menu.menu li,.weather { font-size: 15px !important; }adjust the font size to suit. You will also need to adjust your position widths for the weather as the new font size will change it’s width.
Best regards,
MikeHi,
Perhaps another approach will work better for you, try this solution for making a column a link I have just tested this on my localhost and it is working, be sure to include a link inside your column.
You may need to remove your earlier customization.Best regards,
MikeHi,
Oh sorry, I had misread the question, so you are getting a flash of #702333 when the page is loading?
Try this code in the General Styling > Quick CSS field:html { background-color: #fff!important; }Best regards,
MikeFebruary 10, 2018 at 7:05 pm in reply to: Changing mobile menu browser width and screen options for video elements #910610Hi,
If I understand correctly you would like to hide the video element in the 1/2 column on your homepage under 990px, in doing so it leaves the other 1/2 column to the right. So in this code, we will hide the video & make the other 1/2 column full width:@media only screen and (max-width: 990px) { #top.home .avia-builder-el-2 {display:none !important; } #top.home .avia-builder-el-5 {width: 100% !important; margin-left: 0px !important; } }Then you wanted to hide the slider between 990px and 1040px:
@media only screen and (min-width: 990px) and (max-width: 1040px) { #top.home #fullscreen_slider_1 {display:none !important; } }Best regards,
MikeHi,
In Enfold Theme Options > General Styling > Socket > Socket background color the color is set to #702333, please try changing to #ffffffBest regards,
MikeFebruary 10, 2018 at 6:35 pm in reply to: How to change displaying of standard comments in combo widget? #910602Hey AliAbabwa,
Sorry I’m not understanding what hypercomments is compared to regular comments, but I would imagine that the hypercomments would offer a filter or function to integrate it into WordPress. If you need to replace the Enfold comment system you can try editing /includes/comments.php
But to integrate hypercomments fully into Enfold you may try hire a developer for the task.
There is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.Best regards,
MikeHi,
@danielromanin let us know if you find Guenni007’s suggestion solves your issue. Thanks @Guenni007Best regards,
MikeHey danielromanin,
Try this code in the General Styling > Quick CSS field:.post-entry-71 .flex_column.av_one_fourth:hover a { color: #fff !important; }Best regards,
MikeHey brandreach_at,
This could be achieved with considerable css customization or template customization, unfortunately there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.
If that’s something you really need you can always try to hire a developer for the task.Best regards,
MikeHi,
That is odd, because they seem to be loading on page load for me in Chrome, Edge & Firefox in Windows.
and going to the anchor. Please see the video in the Private Content area.
Which browser are you using?Best regards,
MikeHi,
I’m not sure why the Element Visibility options are not working on your page, I didn’t find any other posts with this issue and didn’t find anything in your css that is conflicting with it. Perhaps try disabling your plugins and custom functions.
But to solve this issue for you I added this code into your css:@media only screen and (max-width: 989px) { #hpvideo,.playbutton,.mutebutton {display:none !important;} }and it seems to be working, Please clear your browser cache and check.
Best regards,
MikeFebruary 10, 2018 at 4:48 pm in reply to: Centering layout elements with a total width smaller than the page width? #910556Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Please don’t feel that you are asking annoying questions! We want to help you make your site the best with Enfold! :)
Let us know if we can close the thread after you get this issue resolved. If you have more questions on a different issue please open a new thread, as this one is getting long.Best regards,
MikeHi,
The Custom Shop page is apart of the Enfold 2017 Demo.
To purchase please go to: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
After you purchase you will download the .zip file and open to find another .zip file inside called enfold.zip which you will upload to your WordPress templates and activate.
Then from the theme options choose “Demo Import” and choose Enfold 2017 to install.Best regards,
MikeHi,
While the weather plugin is working in Chrome & Edge, in IE11 it returns a empty div, so this is a plugin limitation with IE11. I tried to research further but the plugin has not been updated in 7 years. You may be better to find a different plugin or just let the IE11 limitation be. Please note that IE11 has been replaced by Edge fewer people use it daily.
Best regards,
Mike -
AuthorPosts

