Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s coded in the css file wp-content/themes/terrifico/css/layout.css

    #key-features-wrap {
    background-color: #9DB1BA !important;
    }

    Thread Starter micgillan

    (@micgillan)

    Thank you. Your a genius, the fix worked. The code now reads.

    /*General Mosaic Styles*/
    .mosaic-block {
    float:left;
    position:relative;
    overflow:hidden;
    width:470px;
    height:250px;
    margin:10px;
    background:transparent;
    border:1px solid #F2EFEF;
    -webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
    }

    .mosaic-backdrop {
    display:none;
    position:absolute;
    top:0;
    height:100%;
    width:100%;
    background:transparent;
    }

    .mosaic-overlay {
    display:none;
    z-index:5;
    position:absolute;
    width:100%;
    height:100%;
    background:transparent;
    }

    /*** Custom Animation Styles (You can remove/add any styles below) ***/
    .circle .mosaic-overlay {
    background:url(../images/assets/hover-magnify.png) no-repeat center center;
    opacity:1;
    -ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=100)”;
    display:none;
    }

    .fade .mosaic-overlay {
    opacity: 1.00;
    background:url(../images/assets/bg-burgundy.png);
    }

    .bar .mosaic-overlay {
    bottom:-100px;
    height:100px;
    background:url(../images/assets/bg-blue.png);
    }

    .bar2 .mosaic-overlay {
    bottom:-50px;
    height:100px;
    opacity:0.8;
    -ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=80)”;
    }

    .bar2 .mosaic-overlay:hover {
    opacity:1;
    -ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=50)”;
    }

    .bar3 .mosaic-overlay {
    top:-100px;
    height:100px;
    background:url(../images/assets/bg-black.png);
    }
    /*** End Animation Styles ***/

    .mosaic-block .details{
    margin:15px 20px;
    }
    .mosaic-block h4{
    line-height:160%;
    color:#fff;
    text-shadow:1px 1px 0 rgb(0,0,0);
    margin-bottom: 20px;
    }
    .mosaic-block p{
    color:#aaa;
    text-shadow:1px 1px 0 rgb(0,0,0);
    line-height: 1.5;
    }
    .mosaic-block a{
    text-decoration:none;
    opacity: 1 !important;
    }

    #content-holder3 .mosaic-block h4 {
    color: #ffffff !important;
    }

Viewing 2 replies - 1 through 2 (of 2 total)