hi,
do you have another event for us to see and analyze ?
Thread Starter
Tiago
(@iam3ple)
Sorry, I had to delete that “test event”, because I was about to launch the final version of the website.
Here’s a new, official event:
http://www.events.wavebix.com/events/3ple-tsunamiz-no-hollywood-spot/
Thank you!
hi,
I tried the link above and seems to be working fine?
Thread Starter
Tiago
(@iam3ple)
The website is working.
The issue is the spacing between “More Info” and the description itself, in this case “Entrada a €3 com direito a imperial. Venham beber uma connosco e ouvir boa música! 🍺🍻”
Compare it to the spacing between “Date” and “Sep 13, 2019 – Sep 14, 2019”.
The spacing after “More Info” seems like a double space.
It’s the only field that is behaving like that…
I think your theme is adding margins to the p tag; you can try something like
p {
padding: 0px !important;
margin: 0px !important;
}
you can wrapped your single events page format in a div then use the css above to avoid overriding p tag css within your site.
Thread Starter
Tiago
(@iam3ple)
Hey @angelo_nwl
It took me a while to reply… been super busy and wanted to focus 100% on this.
Your tip helped me a little bit and then I had to figure out how to apply it.
Since the single event is controlled inside the Formatting > Events > Single Event Page > Single event page format
what I did was changing
<p>
<strong>More Info</strong><br/>
#_EVENTNOTES
</p>
to this:
<p class="moreinfo">
<strong>More Info</strong><br/>
#_EVENTNOTES
</p>
Then in the Additional CSS section I added your code with something extra:
p.moreinfo {
padding: 0px !important;
margin: 0px !important;
}
And it works like a charm now! 😀
Thank you so much for your help 😉