Support

Home Forums Event Espresso Premium My Custom CSS don't take effect anymore

My Custom CSS don't take effect anymore

Posted: July 29, 2015 at 12:30 pm

Viewing 5 reply threads


Gabriel Hernández

July 29, 2015 at 12:30 pm

Hi, apparently all the changes i did in my custom CSS now are not taken effect, i’m wondering if was the last update to the EE4 Plugin.

Here is a sample of the code i was using:

input[type="text"], input[type="email"], input[type="tel"], .register .select-holder { color: #8b1e50; }

The text was purple but now is white again.
http://pho.to/9beXP/4m

Did you change the codes? o what can i do to take the changes back?

Its the same for the Event Cart
http://pho.to/9beZ7

The code was working before the updates:

a:hover event-cart-empty-cart-lnk event-cart-update-cart-lnk { color: #59a2bd; }
.schedule-overview li:hover .middle  { background: #8b1e50; }

This is the link of my website: http://calidadeinocuidad.com/proceso-de-registro/

I hope you can help me.
Thanks.


Lorenzo Orlando Caum

  • Support Staff

July 29, 2015 at 1:12 pm

Hi Gabriel,

Are you trying to set the text for the input fields to be the pink-purple color?

If so, please try this:

#ee-single-page-checkout-dv input {
	color: #8b1e50;
}

The second CSS example that you shared is incomplete as it doesn’t specific if those are classes and they are. Try this:

a:hover.event-cart-empty-cart-lnk, a:hover.event-cart-update-cart-lnk { color: #59a2bd; }
.schedule-overview li:hover .middle  { background: #8b1e50; }

Let us know if that helps.


Lorenzo


Gabriel Hernández

July 29, 2015 at 3:00 pm

Well that works fine. Well, almost.

The problem is just with the Proceed button because also changes the color. can you help me to make it visible, maybe with a white text.
http://pho.to/9bfef

ignore the change for the ticket qty update i fixed using this code:
#event-cart-wrap-dv input {color: #8b1e50;}

Thanks so much for your time.


Dean

July 30, 2015 at 2:33 am

Hi,

Your Custom CSS is causing the lack of text color.

Please remove this CSS

#ee-single-page-checkout-dv input {
    color: #8b1e50;
} 

From the My Custom CSS plugin.

For the Number choice (Cantidad) you could use

.event-cart-ticket-qty-dv input {
    color: #fff !important;
    background-color: #000;
}


Gabriel Hernández

July 30, 2015 at 7:59 am

Hi Dean, the first code was the code who Lorenzo gave me to change the text of the registration form. This one: http://share.pho.to/9beXP/4m

When i added the code the input text was fixed but the problem is the text of the “Proceed button” because also changes the text and cannot be readable with the color button.

How can i change just the color of the inputs but not the button?
This is how looks without the code: http://pho.to/9bkgH


Tony

  • Support Staff

July 30, 2015 at 10:30 am

So is this what you are looking for? – http://take.ms/2PAtu

I did that using:

#ee-single-page-checkout-dv input:not([type=submit]) {
    color: #8b1e50;
}

Style all inputs that are NOT equal to type=submit.

Viewing 5 reply threads

The support post ‘My Custom CSS don't take effect anymore’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso