Tobias Prinsen
September 12, 2014 at 4:02 am
Dear,
I have setup EE4 and want to customise the page. In most cases it is hiding or changing the CSS.
I am using an the elegant theme Divi 2.0. I made a child theme with a seperate CSS file.
For this page: http://events.scc.nl/event-listing/
I want to hide the element: page-header
I tried this by adding:
.page page-id-23 .page-header {
display: none;
}
but this seems not to work. Please advice
Tobias Prinsen
September 12, 2014 at 4:08 am
Add New Note to this Reply
found it, page was mentioned twice
Dean
September 12, 2014 at 4:51 am
Add New Note to this Reply
Hi Tobias,
Is it fixed now? Can we mark this as resolved?
Tobias Prinsen
September 12, 2014 at 6:40 am
Add New Note to this Reply
Hi Dean,
almost, found another one I can’fix
element in on the registration page: http://events.scc.nl/event-registration/?ee=_register
I want to change the color of the active number.
wiht the class: .spco-step-big-nmbr
I added the class with the color override to my style sheet, but another style sheet does override this color.
Dean
September 12, 2014 at 6:51 am
Add New Note to this Reply
Hi,
Try
#single-page-checkout .active-step .spco-step-big-nmbr {
color: yellow;
}
that will change it to yellow, so you might want to change that bit!
Tobias Prinsen
September 12, 2014 at 6:53 am
Add New Note to this Reply
jep! thanks