admin管理员组文章数量:1023273
I built [this][1] form in GoHighLevel. I am trying to adjust the background so the top part (before the form fields, header and description text) is white, and the rest a green.
I add the following code to the custom css section of the form settings but it doesn't work:
background: linear-gradient(transparent 40%, #415024 40%) no-repeat !important;
I built [this][1] form in GoHighLevel. I am trying to adjust the background so the top part (before the form fields, header and description text) is white, and the rest a green.
I add the following code to the custom css section of the form settings but it doesn't work:
background: linear-gradient(transparent 40%, #415024 40%) no-repeat !important;
Given that I want the background changes applied to the whole form I did not indicate a selector, but even trying various selectors the changes are not applied. What changes do I need to make to the css? [1]: https://api.leadconnectorhq/widget/form/Jd1fNyUWJVhTuphrEPtt?notrack=true
Share Improve this question asked Nov 18, 2024 at 19:40 Kourtney KearneyKourtney Kearney 1012 silver badges8 bronze badges1 Answer
Reset to default 0Your #_builder-form
div has the following CSS property which is being applied with priority over your linear-gradient:
background-color: #435126FF;
In the code you provided, I see you included !important
, but in the CSS of your page that is not actually present. If you were to go back and add the !important
to the end of your linear-gradient, then that will also fix your problem.
I built [this][1] form in GoHighLevel. I am trying to adjust the background so the top part (before the form fields, header and description text) is white, and the rest a green.
I add the following code to the custom css section of the form settings but it doesn't work:
background: linear-gradient(transparent 40%, #415024 40%) no-repeat !important;
I built [this][1] form in GoHighLevel. I am trying to adjust the background so the top part (before the form fields, header and description text) is white, and the rest a green.
I add the following code to the custom css section of the form settings but it doesn't work:
background: linear-gradient(transparent 40%, #415024 40%) no-repeat !important;
Given that I want the background changes applied to the whole form I did not indicate a selector, but even trying various selectors the changes are not applied. What changes do I need to make to the css? [1]: https://api.leadconnectorhq/widget/form/Jd1fNyUWJVhTuphrEPtt?notrack=true
Share Improve this question asked Nov 18, 2024 at 19:40 Kourtney KearneyKourtney Kearney 1012 silver badges8 bronze badges1 Answer
Reset to default 0Your #_builder-form
div has the following CSS property which is being applied with priority over your linear-gradient:
background-color: #435126FF;
In the code you provided, I see you included !important
, but in the CSS of your page that is not actually present. If you were to go back and add the !important
to the end of your linear-gradient, then that will also fix your problem.
本文标签: htmlChange background of part of GoHighLevel formStack Overflow
版权声明:本文标题:html - Change background of part of GoHighLevel form - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745598374a2158308.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论