Hi,
can anybody let me know why the order of elements is different in mobile view? the blue background element is on the top in desktop (correct position) but it goes after the contact form element in mobile view.
Also I want to know how I can style the label texts inside contact form fields, please.
thanks.
Hey afarahani,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look? Do you have some JavaScript that changes the order of the elements?
To change the form styles you can use css like below
#top div .av-light-form input[type='text'] {
your style goes here
}
Best regards,
Victoria
please find it below:
Also the code mentioned above worked for the input text but not for the placeholder text. I was looking for the place holder text CSS.
BTW, is there any way that the @facefont can be applied to all texts in the site and I don’t have to define it one by one for every class of text in the website?
Hi afarahani,
This code will affect placeholder:
#top div .av-light-form input[type='text']::placeholder {
color: red;
}
defines style for the whole website
body {
font-family: Arial....
}
If you need further assistance please let us know.
Best regards,
Victoria
Thanks Victoria,
The placeholder code worked. Thanks.
But the body css didn’t work. for example I was not able to apply facefont to the button text. I also tried to see if I can remove the same place holder code you sent me with the code for the whole body. I realized the body code didn’t work for that either.
Did you find out about the problem with the order of elements I mentioned above?