I’m using Broadcast plugin. Our site is multi site network.
You can find that .
Thank you for the info.
The od_homepage_content shortcode also relies on another shortcode [cs_gb name=“homepage_content”] . Where do you edit the content of this shortcode?
To make the background video display on the frontend, we added this css code temporarily:
html:not(.tco-ui-theme-dark):not(.tco-ui-theme-light) .x-section.e5853-e2.m4il-0.m4il-1 {
height: calc(100vh - 198px);
position: absolute;
top: 0;
left: 0;
width: 100vw;
}
homepage_content it is name of the component in Cornerstone.
I think, cs_gb is command that built by Cornerstone.
The video was working well for a while, but it suddenly stopped a few days ago.
Thank you for the info.
We found the homepage_content template and edited it. We applied the css modification directly to the Hero section.
html:not(.tco-ui-theme-dark):not(.tco-ui-theme-light) $el {
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100vw;
}
Please make sure to purge the cache before checking the page.
Could you find why the section tag not wrap the row tag?
Without using the css code, it was working well.
Can you find out the issue?
We are not yet sure why the row container is not inside the section, but it might be due to the combination of shortcodes used in the template. In those templates, did you insert html tags? It’s possible that some of the tags are invalid or were not closed correctly. To test this, you can duplicate the template, temporarily remove the columns inside the row, and then check if the section renders correctly.
The css code that we added above should make sure that the background displays correctly.
I didn’t add html tags in the template.
So it means, you can’t find out the solution?
How about in the shortcodes used in the template, such as [od_practicename] and [od_formerly]? We did find a temporary solution, and the background video should be displaying correctly on your end. However, the row container is still rendered outside the section.