Why use Custom CSS

Eventact allows you to customize the event website, forms, event app, and other customer-facing interfaces. This allows you to go beyond just changing colors, fonts and images using the back-office ‘Design’ settings.

Adding Rules in the Back Office

Examples

Website

Hidden navigation bar for small screens
Hide the navigation bar
@media (max-width: 600px) {
  #ws-app .navbar-event .navbar-nav {
    display: none;
  }
}
#ws-app nav.navbar-event {
  height: 88px;
}
.navbar-event .navbar-nav li.active a {
  border-bottom: solid 4px #1abdd8;
  padding-bottom: 6px;
}
@media (min-width: 300px) and (max-width: 991px) {
  .description-title {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .description-title {
    font-size: 50px;
  }
}

Outlined numbers in timer
Outlined timer
.countdown .part .value {
  color: transparent;
  -webkit-text-stroke: 2px #960d54;
  text-stroke: 2px #aaf0d1;
  font-weight: bold;
}
#section-0-77269 {
    background-color: #f5faff;
    }

#section-0-77269 h2 {
    color: #042994;
    }

#section-0-77269 h3 {
    color: #042994;
    }
Gradient button color
Gradient button color
.btn, a.btn, a.btn:link, .btn-link, button.btn-link {
    color: #ffffff;
    background-color: var(--ea-btn-bg-color);
    background: linear-gradient(315deg, rgb(144 43 250) 0%, rgb(242 55 168) 100% 89%);
}
Link to an exhibitor page converted to a button-like view
Link view change
.exhibitor-card .card-body a:last-of-type { 
    border: 1px solid #ac54f7;
    color: white;
    background-color: #ac54f7;
    border-radius: 6px;
    padding: 5px 10px;
}
Customization of speakers images
Customization of speakers images
#section-Speakers-77777 .ws-section img.speaker-img {
    border-radius: 12px !important;
}

.ws-section img.speaker-img {
    border: none !important;
    border-radius: 12px;
}

Agenda

Registration Form with Pre-Filled value of Registrant Type
Hide the toggle icons
.session-wrapper i.mdi.mdi-chevron-up {
      display: none;
    }
.session-wrapper i.mdi.mdi-chevron-down {
      display: none;
    }
.action-bar-icon a .mdi { 
  color: white;
}
Example of a lecture page with custom title and author colors
Custom colors for lecture titles and author names
.pv-lecture-pg .lv-lecture-container .lv-lecture-title { 
  color: #b90d0d;
}
.pv-page.pv-lecture-pg .pv-wrapper {
  background-color: white;
}
.pv-page.pv-lecture-pg .pv-author a span {
  color: #9323d2;
}

Event App

Example of the main app section with a gradient background and cards with black borders
Gradient background and black border
body#main-app {
  background: linear-gradient(55deg, #ffdbcb, #f4f2f114);
}
#main-app .card {
  border-color: black !important;
}
Menu bar with a gradient background and icons
Gradient background behind icons
@media only screen and (max-width: 600px) {
  #main-app #navbar-banner.in {
    background-image: linear-gradient(
      to left,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0) 800px
    ),
    url(https://events.eventact.com/experience/header.png);
  }
}

Registration

#eaForm-55555 #form-btns .btn {
  border-radius: 29px;
  width: 82%;
  height: 50px;
}
Button with hover effect
Button with hover effect
#form-btns .btn:hover {
  background-color: #d28e5c;
}
#eaForm-55555 .form-control {
  border-radius: 29px;
  height: 50px;
}
Shadow around inputs
Shadow around input fields
.form-control {
  box-shadow: 0px 4px 10px rgba(55, 99, 255, .2);
}

Do it yourself

To apply other CSS rules:

Find Elements

Create and test CSS Rule

Add the rule

Once you’re satisfied with the result, copy the CSS rule to the Custom HTML section of the back office. Check the website to see the changes. Note: sometimes updates may take a few minutes to appear.

Read more