Viewing 30 results - 7,261 through 7,290 (of 142,938 total)
  • Author
    Search Results
  • #1425157

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1425151

    Hey James,
    Thanks for the link to your page, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    window.addEventListener('load', function() {
      var contactSection = document.getElementById('contact');
      var menuItem467 = document.querySelector('#menu-item-467 .avia-menu-text');
      
      if (!!contactSection) {
        function isHeaderScrolledFull() {
          var header = document.getElementById('header');
          return header && header.classList.contains('header-scrolled');
        }
        
        function updateMenuItemColor() {
          if (isHeaderScrolledFull()) {
            var contactRect = contactSection.getBoundingClientRect();
            var menuItemRect = menuItem467.getBoundingClientRect();
            var contactCenter = contactRect.top + contactRect.height / 2;
            var buffer = 200;
            
            if (contactCenter >= menuItemRect.top - buffer && contactCenter <= menuItemRect.bottom + buffer) {
              menuItem467.style.color = '#cd5124';
            } else {
              menuItem467.style.color = '#9c9288';
            }
          } else {
            menuItem467.style.color = '#545454';
          }
        }
        
        window.addEventListener('scroll', updateMenuItemColor);
        updateMenuItemColor();
      }
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script', 99);

    This script checks that your section ID “contact” on the homepage is within 200px of the center, if it is the menu item with be your highlight color: #cd5124;
    If you then scroll up or down past 200px of the center the menu item will be your light menu color: #9c9288;
    If you scroll all the way to the top the menu item will be the dark menu color: #545454;
    This also works if you land on the “contact” section from another page.
    Please clear your browser cache and check.

    Best regards,
    Mike

    #1425143

    Hi Nikko,

    Thanks so much Nikko, that’s amazing support!

    Two more questions, not big deals but I wonder if its possible:

    1. The date of the post is placed at the bottom of the post, Can it be placed at the top of the post?

    2. The post image highlights when the mouse hovers over and is clickable to enlarge. Which is unnecessary, can that be turned off?

    Thanks again for the excellent support!

    GB

    PS – I just noticed this email from WordPress saying a plugin is causing a fatal error. It seems like it arrived around the same time as the code plugin was added. However when I go to the site, I do not see an issue? What do you think?

    Here is the email:

    Howdy!

    WordPress has a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email.

    In this case, WordPress caught an error with one of your plugins, WPCode Lite.

    First, visit your website (https://lunabeylerian.com/) and check for any visible issues. Next, visit the page where the error was caught (https://lunabeylerian.com/wp-admin/admin.php?page=wpcode-snippet-manager&snippet_id=2519) and check for any visible issues.

    Please contact your host for assistance with investigating this issue further.

    If your site appears broken and you can’t access your dashboard normally, WordPress now has a special “recovery mode”. This lets you safely login to your dashboard and investigate further.

    https://lunabeylerian.com/wp-login.php?action=enter_recovery_mode&rm_token=HETmXA1jG0H9BzFPxH5SIM&rm_key=Pa1udPi9LDnORvkXhW41Vn

    To keep your site safe, this link will expire in 1 day. Don’t worry about that, though: a new link will be emailed to you if the error occurs again after it expires.

    When seeking help with this issue, you may be asked for some of the following information:
    WordPress version 6.4
    Active theme: Enfold (version 5.6.6)
    Current plugin: WPCode Lite (version 2.1.5)
    PHP version 7.4.33

    Error Details
    =============
    An error of type E_COMPILE_ERROR was caused in line 1 of the file /home/gregoryb/public_html/lunabeylerian.com/wp-content/plugins/insert-headers-and-footers/includes/class-wpcode-snippet-execute.php(287) : eval()’d code. Error message: Cannot redeclare enfold_customization_modify_thumb_size() (previously declared in /home/gregoryb/public_html/lunabeylerian.com/wp-content/themes/enfold/functions-enfold.php:2660)

    • This reply was modified 2 years, 5 months ago by gb.
    #1425142
    So Evolve
    Participant

    Since updating to WordPress 6.4 & even this morning’s 6.4.1, we have had a very unstable working environment. We currently cannot save work (pink ribbon on top -Message “updating failed”) and are having issues with the Accordion content element.

    Content Elements – Accordion functionality is terrible. The toggle content is there but not displaying. Sometimes, when you click on a Toggle +, it takes you to the top of the page rather than just opening up the toggle container.

    #1425139

    It broke my whole message because I was using HTML tags.

    `I cant find how to globally update the

  • ,
      ,

        ‘ values in the advanced styling tab.

        Also, how can I set different text sizes for desktop text and mobile text size?

        THank you.

#1425136
Marc
Participant

Hello together,

We are utilizing the tab section element on our website but the height option “auto adjust to content” does not seem to work properly.
All tab sections still have the same height as the tab section with the most content (see private content section).
We have also tried to completely redesign the section from scratch but with no luck at all.
After some research we have found quite a few topics on this issue but mostly from older Enfold versions (between 2017-2019), so it seems that the issue had been fixed in some former release.
We are running Enfold 5.6.8 on PHP 8.2.12.

How can this be fixed?

Best regards,
Marc

#1425132

Hi Mike
Thank you. That makes sense. Is it possible to display the gif I created on mobile devices and the normal video on desktop?

BR
Henrik

#1425126

Hi Rikard
you can close the topic
Thanks

#1425125

Hi,
Thank you for the link to your site, for the page /unser-verein/samariter-mitglied-werden/ try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

#top.page-id-959 .main_color #result_ajax_response_1.ajaxresponse h3 {
	color: #000;
	border-color: #e30615;
}

the expected results:
Enfold_Support_3873.jpeg
for the page /kontakt/ try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

#top.page-id-954 .main_color #result_ajax_response_1.ajaxresponse h3 {
	background-color: #212a48;
}

the expected results:
Enfold_Support_3875.jpeg
feel free to adjust to suit, after applying the css, please clear your browser cache and check.

Best regards,
Mike

#1425119

Hi,

Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

Best regards,
Rikard

#1425114

In reply to: Sektion H1 Problem

Hi,
Thanks for your patience and the link to your site, your NexForms popup has a H1 title:
Enfold_Support_3869.jpeg
and your special heading element is a H1:
Enfold_Support_3871.jpeg
So you should review your NexForms popup plugin and remove the H1 popup title and change the special heading element to H2, since it is in the middle of your page, typically H1 should be at the top of your page.

Best regards,
Mike

Hi,
Yes, I mean where the sticky header below 767px is covering the top part of the main body, this seems to be due to some custom css removing the top padding:
Enfold_Support_3867.jpeg
Try changing the padding-top: 0 !important; to padding-top: 80px !important; or more to suit.
Instead of using the !important;, try this css instead:

@media only screen and (max-width: 767px){
.responsive.html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 80px;
    margin: 0;
}
}

It was hard to examine because the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression is still enabled.
Try disabling this while you are building your site.

Best regards,
Mike

#1425100

I’m back and, to be honest, feeling a bit frustrated with the Enfold theme for blogging. It’s turning out to be less flexible than I’d hoped, especially when it comes to content visuals. Despite trying with Kadence blocks and other plugins, I’m not getting the results I want within this theme. Right now, I’m facing an issue with text alignment in blog posts. I find myself manually aligning every piece of text and title, avoiding the use of blocks because I can’t get the alignment right. I did use a simple Table of Contents block, which aligns well on a desktop but not on mobile. I’m looking for a way to set text alignment consistently across all devices and would really appreciate it if a moderator could guide me on how to fix this quickly.

#1425091

Please find the screen shoot, on red circles my problem (top and bottom)

The yellow image displaying is the background for mobile image!
If i erase this image settings it display grey lines

#1425089

In reply to: Enfold Showcase

Hi Christoph,

Thanks for sharing and for using Enfold, it looks great :-)

Best regards,
Rikard

#1425070

Hi Sandy,

I’m glad that Ismael could help you :)
We have removed it as you requested.
Please let us know if you still need further assistance related to the topic or if we can close the thread.

Best regards,
Nikko

#1425068

In reply to: CSS for search bar

Hi Illingco,

You can change the color of the border by adding this CSS property:

border-color: #ebebeb !important;

inside this code from Ismael:

#top #header.header_color .widget #s {
    border-width: 3px !important;
}

Hope it helps.

Best regards,
Nikko

This reply has been marked as private.

Hi,
I see that I made an error above, this is the corrected css:

@media only screen and (min-width: 768px) and (max-width: 1023px)  { 
	.responsive.html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 150px;
}
}

This only starts at 768px, please clear your browser cache and check.

I see another separate error with the margin-top at 767px and below, for the page, please disable any caching plugins and the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files if you also see it, if it you then still see it, check your custom css for missing Semicolon

Best regards,
Mike

This reply has been marked as private.

Hi,

We will add a fix in next release 5.6.9.

There was a problem with “Fullscreen Mode” and ALB in Block editor – and I adopted the behaviour of ALB as it is in classic editor where “ALB Fullscreen” uses the complete screen.

In next release the Block editor “Settings” Button in top bar will allow to show or hide the sidebar. Fullscreen mode will hide or show the dashboard menus on the left.

Sorry for the problems you had and thank you for reporting.

In case you need the fix earlier let us know.

Best regards,
Günter

#1425009

Hi Benjamin,

For specific pages, just replace #top with #top.page-id-xx
As for transparent submenus, I checked the pages and I think you have already done it.

Best regards,
Nikko

p3nmarketing
Participant

I already tried this solution (https://kriesi.at/support/topic/ultimate-member-plugin-doesnt-work/), but I can´t find the code where update the file since the code has changed.
Could you please provde help?

Jquery migrate helper-Plugin also did not help.

Thank you for your help.

#1424978
xfilegirl
Participant

Hi there,
I’m using the Portfolio Grid feature and I’d like to have the featured images of each aligned to the middle of their respective grid boxes. As of now, they align top so when the box changes dimensions because of responsive adjustments, a good part of the bottom of the image is not visible. I need equal parts of the top and bottom of the image to get cropped out rather than a larger chunk of the bottom.

I’d also like to know how to keep all entries in the portfolio grid the same size no matter how big or small the browser window is made. Right now all of my grids look the same size but if I adjust the browser window some of the grid boxes are taller than others depending on the length/width ratio of the featured image.

I have included a link to a sample page for you to see what I mean. Thanks!

Hi,

Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

Best regards,
Rikard

Andy
Guest

hello mike
thank you for reply.

i was not able to register at https://kriesi.at/support/register/ becaus of missing purchase code, so i’ll write this as a follow-up of https://kriesi.at/support/topic/theme-update-not-available-2/

i will clarify with our customer, if there is any known envato account…
if there is not so, is it possible to obtain the latest version directly from you? an, if yes, how and what are the conditions?
or should I just buy a regular license at https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi and I will be able to uptate as mentioned by you in your previous replay?

best regards,
andy

#1424945

Hi,
Perhaps, what you are trying to ask for is that on desktop you want the text and the buttons to be in one line, and you want the text to also be in a single line, like this:
Enfold_Support_3865.jpeg
If this is what you are asking, then please add this css:

@media only screen and (min-width: 1520px) { 
.responsive .avia-cookie-consent.avia-cookiemessage-bottom .container {
    max-width: 1520px;
}
}

Please note that with the amount of text you have this can only occur for desktops above 1520px, otherwise there is not enough room for the text to be in a single line and next to the buttons.

Best regards,
Mike

#1424935
jb84
Participant

Hi
on my private link you can see top and botom margin now displaying on my top video page.
We can see the yellow image background (set for mobil).

Have you an idea to hide this?
Do you need credantials?
Regards

#1424925

In reply to: contact info

Hey Beth,

You can use this link to open a new thread, or click the big blue bottom at the top of the page here: https://kriesi.at/support/forum/enfold/

Best regards,
Rikard

#1424923

In reply to: Mobile Text Missing

Hey refractiv,

I’m seeing the same text on desktop as I do on mobile. Could you try using a private browser window on your mobile device please?

Best regards,
Rikard

Viewing 30 results - 7,261 through 7,290 (of 142,938 total)