Support

Home Forums Pre-Releases Formatting of the dropdown menus (with quantity of tickets)

Formatting of the dropdown menus (with quantity of tickets)

Posted: May 8, 2014 at 8:44 am


Jean-Baptiste Dayez

May 8, 2014 at 8:44 am

Hello,

I have a strange bug that makes my dropdown menus (with the desired quantity of tickets) invisible.

You can see the problem here :
http://www.alliageartproject.com/?espresso_events=prochain-spectacle

Could you please tell me where is the CSS code that I could modify to change that?

Thanks a lot in advance!


Tony

  • Support Staff

May 8, 2014 at 8:58 am

Hi,

This is caused by some CSS within your theme. base.css line 141 you’ll find this:

media="all"
input[type="text"], input[type="password"], input[type="email"], textarea, select {
border: 1px solid #ccc;
padding: 6px 4px;
outline: none;
font: 13px 'Source Sans Pro', sans-serif;
color: #fff;
margin: 0;
width: 210px;
max-width: 100%;
display: block;
margin-bottom: 20px;
background: #fff;
}

color: #fff is causing the text of your ‘select’ elements (as well as others) to be white.

To ‘fix’ this you’ll need to add something like this to your site using a plugin such as My Custom CSS

.event-tickets select {
color: #000;
}


Jean-Baptiste Dayez

May 8, 2014 at 9:11 am

Thanks a lot! It works fine now.

I have another problem of the same type on the second screen (with attendee details). When one completes blank fields, the entered text remains hidden. Could you tell me what type of CSS code I could add to fix this? Thanks a lot in advance!


Lorenzo Orlando Caum

  • Support Staff

May 8, 2014 at 12:21 pm

Hello again,

This is being caused by the following CSS in your base.css file:

input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		font: 13px 'Source Sans Pro', sans-serif;
		/* color: #fff; */
		margin: 0;
		width: 210px;
		max-width: 100%;
		display: block;
		margin-bottom: 20px;
		background: #fff; }

Note that I’ve commented out the color: #fff style. Please comment out this style in the CSS block above and that should fix the issue.


Lorenzo


Jean-Baptiste Dayez

May 9, 2014 at 1:27 am

Hi Lorenzo,

Thanks a lot for your help. My problem is now solved!

Jean-Baptiste

The support post ‘Formatting of the dropdown menus (with quantity of tickets)’ 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