Hello Helical Insight,
I am using Helical Insight version 4. What I have observed is that submit button size remains small even though I try to increase the container size of it. Please help
Thank You,
Vema.
Hello Helical Insight,
I am using Helical Insight version 4. What I have observed is that submit button size remains small even though I try to increase the container size of it. Please help
Thank You,
Vema.
Hello Vema,
In order to increase the size make sure that you increase button component size by drag drop in the dashbard.
Then in the CSS you can write something like this which will make the SUBMIT button take the entire height width of the component and any further CSS can also be applied
.btn
{
width: 100% !important;
height: 100% !important;
color: red !important;
background-color: black !important
}
Note: do not add this at entire generic CSS level at application since button class might have been used at many many places
Thank You,
Helical Insight.