Views: Popups

Pop Up 1

To implement popup:

1. Grab the code from this page's SEO box in EMS

2. Add this CSS

 /* popup-1 */

#popup-1 {
  /* uncomment th edisplay:none below when using the popup in production */
  /* display:none; */
  background:#2f449d;
  color: #555555;
}
.fancybox-skin{
  background:#2f449d !important;
}
#popup-1 h1, #popup h2{
  text-align:center;
  color:#FFF;
}


#popup-1 h2 {
  color: #f2482e;
  font-size: 67px;
  font-weight: bold;
  font-family: 'Sancreek', cursive;
}


#popup-1 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}


#popup-1 ul li {
  display: block;
  text-decoration: none;
}


#popup-1 h1 {
    font-family: "Open Sans",sans-serif;
  font-size: 35px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}


#popup-1 .shadow{
  box-shadow: 3px 3px 8px #000;
}


#popup-1 p {
  color: #fff;
  padding: 0;
  text-align: center;
}

#popup-1 p.red {
  color: #F2482E;
  font-weight: 600;
}

#popup-1 h3 {

  color:#FFF;
}

#popup-1 h3.two{
  width:300px;
}

#popup-1 h3 em{
  text-transform:uppercase;
  margin:0 16px 0 0;
}

#popup-1 a {
  color: #fff ;
  text-decoration: none;
}
#popup-1 a:hover {
  color: #fff ;
  text-decoration: underline;
}

#popup-1 .btn{
  margin-bottom:20px;
}


@media(min-width:768px){

  .popup-left{
    text-align:right;
  }
  .popup-right{
    text-align:left;
  }
}

@media(min-width:768px){
  #popup-1 .container {
    width: 550px;
  }
}
@media(min-width:992px){
  #popup-1 .container {
    width: 770px;
  }
}
@media(min-width:1200px){
  #popup-1 .container {
    width: 970px;
  }
}



/* end popup-1 */

Pop Up 2