• Hola,
    When I arrive at this page on a desktop the background fallback image will show for about 10 seconds then the page runs the video background. On my cell the background just shows up white with no text showing.

    Also I have tried change the font color inside my contact forms using the customizer but I am doing something wrong as I have not been able to change that. Using ninja or wp forms I get the same result.
    Thanks,
    Terry

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    For the fallback image, go to Elementor editor and remove the image from there or add the below code in the Customizer > Custom CSS section

    .elementor-945 .elementor-element.elementor-element-ff652fb {
        background: none;
    }

    Add the below code in the Custom CSS section of the customizer to make video visible in mobile.

    @media (max-width: 1024px) and (min-width: 768px)
    .elementor-hidden-tablet {
        display: block;
    }
    
    @media (max-width: 767px)
    .elementor-hidden-phone {
        display: block;
    }

    For the font color – Currently, it is set to yellow. Did you try to check the changes in a different browser after saving the settings?

    Thread Starter coastalproperty

    (@coastalproperty)

    The title of the fields are in yellow. The font color inside the field where you would put your name is dark grey. In the customizer/topo/body is the only place where my computer and cell can not change the color.
    I have learned what little I know just by pushing buttons and seeing what happens. I sure its like my lighting desk it can get gaked out sometimes. I must be on ver. 108. Tomorrow I am deleting everything and start all over. If I have problems I’ll be back and I will included those fixes. With your fix will iphones be able to see the background video?
    Thanks for helping this old blind man see some light.
    Terry

    Hello,

    Try to update the theme to the latest version 1.5.31. Add the above fixes and let me know it works or not. Also, I didn’t test the code on iPhone but it should work.
    After adding codes and saving settings, try to clear cache or use a different browser to see the changes.

    Thread Starter coastalproperty

    (@coastalproperty)

    I get a message that I need an L bracket where the period is before elementor. Googled L bracket did not help. Is it this {

    Hello,

    Please use the updated code here for the video. Let me know it works or not.

    @media (max-width: 1024px) and (min-width: 768px) {
    .elementor-hidden-tablet {
        display: block;
    }
    }
    
    @media (max-width: 767px) {
    .elementor-hidden-phone {
        display: block;
    }
    }
    Thread Starter coastalproperty

    (@coastalproperty)

    Hello, I still have any video in the background on mobile. But it did except you change in the script above. Also font color in the field box is dark in desktop mode and I can not locate where I can change the color. Thanks for the help

    Hello,

    Go to Customize > General Option > Input & Text Field section and adjust the color from there.

    You can also do it by adding the below code to the Customize > Custom CSS section

    form input[type="text"], form input[type="password"], form input[type="email"], form input[type="url"], form input[type="date"], form input[type="month"], form input[type="time"], form input[type="datetime"], form input[type="datetime-local"], form input[type="week"], form input[type="number"], form input[type="search"], form input[type="tel"], form input[type="color"], form select, form textarea {
    color: #fffefe;
    }
    Thread Starter coastalproperty

    (@coastalproperty)

    Hello, Thanks for the help. I did not find an input and field section but I was able to change it in a forms section. Ciao Terry

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘background fallback not working’ is closed to new replies.