- Posts: 11
- Thank you received: 0
I need help in editing Events
- Chris Nawrot
- Topic Author
- Offline
- New Member
-
Less
More
9 years 3 months ago #92059
by Chris Nawrot
Replied by Chris Nawrot on topic I need help in editing Events
I have update my event booking to 2.12.2 and all my settings with my backgroung disapear?
pmushow.com/pm1/index.php/en/ticket
pmushow.com/pm1/index.php/en/ticket
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
9 years 3 months ago #92060
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic I need help in editing Events
Hi Chris
How did you put background for event? Did you put the background using custom css? Please give us more information so that we can answer your question
Tuan
How did you put background for event? Did you put the background using custom css? Please give us more information so that we can answer your question
Tuan
Please Log in or Create an account to join the conversation.
- Chris Nawrot
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 11
- Thank you received: 0
9 years 3 months ago #92066
by Chris Nawrot
Replied by Chris Nawrot on topic I need help in editing Events
This
I am not good enough at css to guide you to do it, but it should be doable using minor modification to php code and combine with css
1. Open the file components/com_eventbooking/view/common/tmpl/events_default.php, find this line of code:
<div class="eb-category-<?php echo $event->category_id; ?> eb-event<?php if ($event->featured) echo ' eb-featured-event'; ?> clearfix" itemscope itemtype=" schema.org/Event ">
2. Change it to:
<div id="eb-event-<?php echo $event->id; ?>" class="eb-category-<?php echo $event->category_id; ?> eb-event<?php if ($event->featured) echo ' eb-featured-event'; ?> clearfix" itemscope itemtype=" schema.org/Event ">
With that modification, each event is now surrounded by a div with id="eb-event-ID_OF_EVENT", for example id="eb-event-1", id="eb-event-2"
2. The next part would be adding custom css to use background image for each event to media/com_eventbooking/assets/css/custom.css
#eb-event-1
{
// CSS code to handle background image for event with ID = 1 here
}
#eb-event-2
{
// CSS code to handle background image for event with ID = 2 here
}
and so on...
Hope it gives you some help
Regards,
Tuan
And my custom CSS looks
.input-append input, .input-append select, .input-append .uneditable-input {
font-size: 18px;
line-height: normal;
height: auto;
}
.eb-container label.control-label {
font-size: 22px;
line-height: normal;
}
#eb-event-1
{
background: url(ticketbacground2.png) no-repeat center center !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
border: none !important;
}
#eb-event-2
{
background: url(ticketbacground1.png) no-repeat center center !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
border: none !important;
}
I am not good enough at css to guide you to do it, but it should be doable using minor modification to php code and combine with css
1. Open the file components/com_eventbooking/view/common/tmpl/events_default.php, find this line of code:
<div class="eb-category-<?php echo $event->category_id; ?> eb-event<?php if ($event->featured) echo ' eb-featured-event'; ?> clearfix" itemscope itemtype=" schema.org/Event ">
2. Change it to:
<div id="eb-event-<?php echo $event->id; ?>" class="eb-category-<?php echo $event->category_id; ?> eb-event<?php if ($event->featured) echo ' eb-featured-event'; ?> clearfix" itemscope itemtype=" schema.org/Event ">
With that modification, each event is now surrounded by a div with id="eb-event-ID_OF_EVENT", for example id="eb-event-1", id="eb-event-2"
2. The next part would be adding custom css to use background image for each event to media/com_eventbooking/assets/css/custom.css
#eb-event-1
{
// CSS code to handle background image for event with ID = 1 here
}
#eb-event-2
{
// CSS code to handle background image for event with ID = 2 here
}
and so on...
Hope it gives you some help
Regards,
Tuan
And my custom CSS looks
.input-append input, .input-append select, .input-append .uneditable-input {
font-size: 18px;
line-height: normal;
height: auto;
}
.eb-container label.control-label {
font-size: 22px;
line-height: normal;
}
#eb-event-1
{
background: url(ticketbacground2.png) no-repeat center center !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
border: none !important;
}
#eb-event-2
{
background: url(ticketbacground1.png) no-repeat center center !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
border: none !important;
}
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
9 years 3 months ago #92108
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic I need help in editing Events
Hi Chris
Please submit a support ticket sending us super admin account of the site and the link to the page
We will look at it and check to see why background image is not being displayed properly for you
Tuan
Please submit a support ticket sending us super admin account of the site and the link to the page
We will look at it and check to see why background image is not being displayed properly for you
Tuan
Please Log in or Create an account to join the conversation.
- Chris Nawrot
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 11
- Thank you received: 0
9 years 3 months ago - 9 years 3 months ago #92128
by Chris Nawrot
Replied by Chris Nawrot on topic I need help in editing Events
Removed super admin account
Last edit: 9 years 3 months ago by Tuan Pham Ngoc.
Please Log in or Create an account to join the conversation.
- Chris Nawrot
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 11
- Thank you received: 0
9 years 3 months ago #92283
by Chris Nawrot
Replied by Chris Nawrot on topic I need help in editing Events
Could You help me with background image in the ticket content? Did You get my passwords?
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Away
- Administrator
-
9 years 3 months ago #92429
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic I need help in editing Events
Hello Chris
Sorry, I had to remove the password and forgot to save it. Please never post your site super admin account on a public forum like this in the future
For now. please access to www.joomdonation.com/support-tickets.html , submit a support ticket sending us super admin account of your site and the link to the page
I will ask my template developer to check it for you
Regards,
Tuan
Sorry, I had to remove the password and forgot to save it. Please never post your site super admin account on a public forum like this in the future
For now. please access to www.joomdonation.com/support-tickets.html , submit a support ticket sending us super admin account of your site and the link to the page
I will ask my template developer to check it for you
Regards,
Tuan
Please Log in or Create an account to join the conversation.
Moderators: Tuan Pham Ngoc
Support
Documentation
Information
Copyright © 2026 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.