Change color of checkboxes

I can't figure out the coding to change only the checkboxes to white (not the entire text)

Also, how do I delete the grey footer at the bottom?

My website is:

http://www.xceleratenetworks.properties/3033wilshire.html

4,804 Vistas
Mensaje 1 de 16
Denunciar contenido inapropiado
1 Mejor respuesta

Mejor respuesta

Ok. I see what's happening. Try this code and add it to the footer code field instead of header code:

<style>

.wsite-form-field input[type='radio'], .wsite-form-field input[type='checkbox'], .wsite-com-product-option-groups input[type='radio'], .wsite-com-product-option-groups input[type='checkbox'] {

border: 1px solid #ffffff !important;

}

</style>

Mejor respuesta >

5,510 Vistas
Mensaje 16 de 16
Denunciar contenido inapropiado
Respuestas

For your checkboxes you want something like:

input[type=checkbox] {

border-color: 1px solid #fffff !important

}

For your footer are you referring to that bit of white space on the bottom?

4,788 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

For the footer, yes!

Also, when I put the coding into my header code, it didn't work. Any suggestions?

4,779 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

Oh, you'll want to wrap it in style tags first like this before pasting it into the header code field:

<style>

input[type=checkbox] {

border-color: 1px solid #fffff !important

}

</style>

4,771 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

I copy and pasted the code into my header code, and unfortunately that still doesn't work 😕

4,762 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado
Square

Did you publish and check the live site, @desiree_xn? Sometimes the code does not work in the editor, but will show up on the live site. 

4,749 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

Yes I did!

4,741 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

Oh, I forgot quotes. Try this instead:

<style>

input[type="checkbox"] {

border-color: 1px solid #fffff !important

}

</style>

4,734 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

It still doesn't work...Smiley Frustrated

I so appreciate the help, though! I can make do with non-white checkboxes if it's not possible!

4,733 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

It should be possible, so it might just be a mistake with my code. Where did you add the code, and after adding it did you publish?

4,722 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

I inserted it:

Pages -> 3033 Wilshire -> SEO Settings -> Header Code

Then I publish (which I always do to see if my codes are working)

2,968 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

Ok. Is the code still there? If not can you add it and publish again?

2,962 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

Yes it is!

2,957 Vistas
Mensaje 14 de 16
Denunciar contenido inapropiado

Mejor respuesta

Ok. I see what's happening. Try this code and add it to the footer code field instead of header code:

<style>

.wsite-form-field input[type='radio'], .wsite-form-field input[type='checkbox'], .wsite-com-product-option-groups input[type='radio'], .wsite-com-product-option-groups input[type='checkbox'] {

border: 1px solid #ffffff !important;

}

</style>

5,511 Vistas
Mensaje 16 de 16
Denunciar contenido inapropiado

I was able to use that code and fill in the background! Thank you!

The last thing I needed was to reduce the padding at the bottom of the page. I want to change the padding from 20px to 0px to remove it completely. Do you know how to do this?

2,939 Vistas
Mensaje 16 de 16
Denunciar contenido inapropiado

Great! I'm not sure how to remove that padding as it's being added inline. If you check your page templates do you see that inline styling there. It looks like it's a div that wraps the footer.

2,915 Vistas
Mensaje 17 de 16
Denunciar contenido inapropiado
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.