Hi,
I've just upgraded to the latest Events-Manager.
When I view the details of an event, the background is transparent - http://marketangel.com.au/kat/events/test-market-3-2
How/where do I change the code so that it has a white background?
thanks
Katrina
http://wordpress.org/extend/plugins/events-manager/
agelonwl
Member
Posted 1 year ago #
Hi,
You can changed that in the EM settings > events format > Default single event format then wrap it in a div.
Hi agelonwl,
I can see where you mean to make the changes, but I'm not quite sure of the code I need and definitely have no idea of how to 'wrap it in a div' as I'm not a developer.
Can you please expand on this for me?
Thanks
Kat
agelonwl
Member
Posted 1 year ago #
try this:
<div id="any_id">
default single event format
</div>
now you can put some css on that id in your theme css
e.g.
#any_id { background: #fff; }
Thanks, that partly fixes it
There is still a transparent section around the event details, see - http://marketangel.com.au/kat/events/billycart-markets-10
I'm wanting it to display like the other widgets on the page.
agelonwl
Member
Posted 1 year ago #
did you put some css value (in your theme css)?
e.g.
#event_background {
background:#ffffff;
}
I did as you suggested above
I put this - <div id="event_background"> </div> around all the text in the default single event format box
and added #event_background { background: #fff; } in the theme css
agelonwl
Member
Posted 1 year ago #
Hi,
I inspect your site (using firebug) and did not find the css code however you can try this way
<div id="any_id" style="background:#fff;">
default single event format
</div>
or use this css class post-info and entry-content
Thanks, I'd taken it out earlier as I was testing with different themes and plugins etc and hadn't put it back in.
I've just now ended up making the changes in the css class content and it has had the desired effect.
Thanks so much for your help.