Hi caimin_nwl
Yes I have set the correct timezone in the main WordPress settings.
The list on the homepage comes from an element in Visual Composer called Event List. Visual Composer came built into my theme and if I go to its settings there’s no Event List for me to edit. I’ve already asked the theme builder these questions and they said I needed to contact the Events Manager page. Feel a bit like I’m going around in circles trying to fix this. This is the css code for the list:
‘/*——————————
VC: EVENT LIST
——————————*/
/* line 746, sass/_support.scss */
.wpc-event-item {
border-bottom: 1px solid #eeeeee;
}
/* line 748, sass/_support.scss */
.wpc-event-item a {
display: block;
padding: 20px 10px;
padding: 2rem 1rem;
text-decoration: none;
}
/* line 752, sass/_support.scss */
.wpc-event-item a:hover {
background: #f8f9f9;
}
/* line 754, sass/_support.scss */
.wpc-event-item a:hover .wpc-event-title {
color: #bf9553;
}
@media screen and (min-width: 790px) {
/* line 748, sass/_support.scss */
.wpc-event-item a {
padding: 20px 20px;
padding: 2rem 2rem;
}
}
/* line 762, sass/_support.scss */
.wpc-event-item img {
max-width: 50px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
float: left;
margin-right: 20px;
margin-right: 2rem;
display: none;
}
@media screen and (min-width: 790px) {
/* line 762, sass/_support.scss */
.wpc-event-item img {
display: block;
}
}
/* line 772, sass/_support.scss */
.wpc-event-item .wpc-event-name {
float: none;
width: 100%;
}
@media screen and (min-width: 790px) {
/* line 772, sass/_support.scss */
.wpc-event-item .wpc-event-name {
float: left;
width: 40%;
}
}
/* line 780, sass/_support.scss */
.wpc-event-item .wpc-event-date {
margin-right: 15px;
margin-right: 1.5rem;
}
/* line 783, sass/_support.scss */
.wpc-event-item .wpc-event-time {
margin-right: 15px;
margin-right: 1.5rem;
}
/* line 786, sass/_support.scss */
.wpc-event-item .wpc-event-location {
margin-right: 15px;
margin-right: 1.5rem;
}
@media screen and (min-width: 790px) {
/* line 786, sass/_support.scss */
.wpc-event-item .wpc-event-location {
margin-right: 0px;
margin-right: 0rem;
}
}
/* line 792, sass/_support.scss */
.wpc-event-item i.fa {
margin-right: 6px;
margin-right: 0.6rem;
color: #aaaaaa;
}
/* line 796, sass/_support.scss */
.wpc-event-item .wpc-event-title {
text-decoration: none;
font-size: 18px;
font-size: 1.8rem;
margin-top: -5px;
margin-top: -0.5rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: #222222;
}
/* line 806, sass/_support.scss */
.wpc-event-date, .wpc-event-time, .wpc-event-location {
color: #999999;
font-size: 14px;
font-size: 1.4rem;
margin-top: 13px;
float: left;
}
@media screen and (min-width: 790px) {
/* line 806, sass/_support.scss */
.wpc-event-date, .wpc-event-time, .wpc-event-location {
float: right;
}
}
/* line 817, sass/_support.scss */
.wpc-event-time i.fa, .wpc-event-location i.fa {
font-size: 17px;
font-size: 1.7rem;
}
/* line 822, sass/_support.scss */
.wpc-event-wrap .wpc-event-item:first-child {
border-top: 1px solid #eeeeee;
}
/* line 826, sass/_support.scss */
.em-pagination {
margin-top: 30px;
margin-top: 3rem;
display: inline-block;
}
/* line 829, sass/_support.scss */
.em-pagination strong span, .em-pagination a {
padding: 2px 10px 4px;
padding: 0.2rem 1rem 0.4rem;
background: #aaaaaa;
color: #FFFFFF !important;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
text-decoration: none;
}
/* line 835, sass/_support.scss */
.em-pagination strong span:hover, .em-pagination a:hover {
background: #bf9553;
}
/* line 839, sass/_support.scss */
.em-pagination strong span {
background: #bf9553;
}
/* line 845, sass/_support.scss */
.em-calendar a {
text-decoration: none;
color: #bf9553 !important;
}
/* line 848, sass/_support.scss */
.em-calendar a:hover {
text-decoration: underline;
}
/* line 852, sass/_support.scss */
.em-calendar ul {
list-style: none;
padding-left: 0;
}
/* line 856, sass/_support.scss */
.em-calendar ul li a {
text-decoration: none;
font-size: 16px;
font-size: 1.6rem;
text-transform: uppercase;
letter-spacing: 1.5px;
}
/* line 861, sass/_support.scss */
.em-calendar ul li a:hover {
text-decoration: underline;
}
/* line 867, sass/_support.scss */
table.em-calendar td.eventful-pre a, table.em-calendar td.eventful-post a {
text-decoration: none;
}
/* line 871, sass/_support.scss */
table.fullcalendar thead td {
text-align: center;
text-transform: uppercase;
}
/* line 876, sass/_support.scss */
table.fullcalendar td {
border-color: #DDDDDD;
}’