• Hi

    Im looking for a way to insert css styles into different rows

    for example i would like to have a row with a chevron style i see the code for achieving it is like this one:

    #chevron {
    position: relative;
    text-align: center;
    padding: 12px;
    margin-bottom: 6px;
    height: 60px;
    width: 200px; }

    #chevron:before {
    content: ”;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 51%;
    background: red;
    -webkit-transform: skew(0deg, 6deg);
    -moz-transform: skew(0deg, 6deg);
    -ms-transform: skew(0deg, 6deg);
    -o-transform: skew(0deg, 6deg);
    transform: skew(0deg, 6deg);
    }
    #chevron:after {
    content: ”;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: red;
    -webkit-transform: skew(0deg, -6deg);
    -moz-transform: skew(0deg, -6deg);
    -ms-transform: skew(0deg, -6deg);
    -o-transform: skew(0deg, -6deg);
    transform: skew(0deg, -6deg);
    }​

    but on the row settings i have
    Inline CSS Styles
    Row CSS Class
    and
    Column CSS Class

    how can i achieve this

  • The topic ‘inserting css styles on rows’ is closed to new replies.