Posted: January 27, 2016 at 1:32 pm
Hoping to get some recommendations on how to fix the following styling issues due to conflicts with our custom stylesheet.
I think that captures most of the problem areas. Thank you! |
|
Hi there, I can recommend using Firebug to grab the CSS selectors you’re looking for. If you’re not sure how to use Firebug, here’s a great video that shows how: http://css-tricks.com/video-screencasts/15-introduction-to-firebug/ |
|
Hi Beka, Could you provide some more specific information on the changes? For example, on this item:
…what size are you looking for? Is there an existing image size that we can look for on another page? We’ll need specific feedback like that to suggest changes. Thanks — |
|
sure! Thanks! |
|
Do you need help finding any of the selectors? If so please let us know which ones you could not find and we can point you in the right direction. |
|
I don’t exactly know what a “selector” is or how to find it! I know how to “inspect” the code on the page enough to identify what specific code needs adjusted. Lorenzo recommended using a plug in called “Simple Custom CSS” but I’m not sure how to designate exactly which line of code and how to use the plugin to fix it. |
|
Hello, Below are the changes for what you have shared. The video that Josh shared will help you understand how we are suggesting the changes that you requested. Then you’ll be able to apply new changes on your own. 1) This is something with the theme. We’ll need to come back to this. 2) This CSS will adjust the datetimes styling: ul.ee-event-datetimes-ul { float: right; font-weight: 700; } 3) This CSS will adjust the event cart pop up: #cart-results-modal-dv h5 { font-size:18px; } #cart-results-modal-dv a { text-decoration: none; } 4) This CSS will adjust the event cart page: #event-cart-qty-frm a { text-decoration: none; } 5) This CSS will adjust the registration checkout page: p#spco-attendee_information-pg.spco-steps-pg.small-text.drk-grey-text { color:#FFFFFF; } span.spco-step-name { font-size: medium; } .spco-attendee-lgnd { color:#FFFFFF; } ee-spco-attendee_information-reg-step-form a { text-decoration: none; } Please apply those changes through the Simple Custom CSS plugin and then share feedback. Once we are done there, then we can take a look at the events calendar. — |
|
Thank you so much! The examples you gave really helped me understand what I need to find/inspect/change/whatever. With a bit of modification, those worked well! The buttons on the event cart page (https://www.brinsonbenefits.com/registration-checkout/?event_cart=view#checkout) still look pretty bad! I’ll try to explain what I found- apologies in advance for my lack of css-fluency! these look terrible everywhere they appear: the event cart page looks tons better when I just delete this element completely, but i don’t know how to do that outside of Firebug: These two buttons appear right next to each other, but look radically different! <div class=”spco-whats-next-buttons” id=”spco-attendee_information-whats-next-buttons-dv”> |
|
I tried a gazillion options, but finally found one that removed the wonky icons! Woohoo! .event-cart-add-ticket-button.button, .event-cart-remove-ticket-button.button, .event-cart-delete-ticket-button.button { display: none; } How do i attribute the same style for this button? <input id=”spco-go-to-step-payment_options-submit” class=”spco-next-step-btn button button-primary button-lg” type=”submit” rel=”attendee_information” style=”” value=”Proceed to Payment Options”> |
|
Hello, the first example in this reply here (https://eventespresso.com/topic/fixing-styling-issues-with-custom-css-plugin/#post-190370) is hiding some content and I don’t think you want to hide the registration button. Are you wanting the checkout button to have a similar style as the event cart buttons? — |
|
I don’t care which style, i just don’t want two styles! |
|
Hi, you can use this CSS: .ticket-selector-submit-btn, .spco-next-step-btn { color: #99ff33; background-color:transparent; border: none !important; font-size:medium; } .ticket-selector-submit-btn:hover, .spco-next-step-btn:hover { color: #ff9900; background-color:transparent; border:none !important; font-size:medium; } — |
|
great! Thanks, Lorenzo! This worked great on the hover, but the .spco-next-step-btn remains the same. I tried a couple variations, but it doesn’t seem to override this: |
|
Nevermind! I missed a bracket on the css before the first group. This works now! Thank you so much! |
|
You are welcome! — |
|
The support post ‘Fixing styling issues with custom css plugin’ 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.