• Resolved jeanfrancoiscyr1

    (@jeanfrancoiscyr1)


    I am trying to modify the style and behaviour of two widgets: Post carousel and Grid and cannot find the relevant selectors and properties. I want to:
    -control the appearance of bottom type
    -remove the hover effect

    I have found this bit of CSS:

    .lsow-posts-carousel .lsow-posts-carousel-item .lsow-project-image .lsow-image-info {display: none;}

    .lsow-posts-carousel .lsow-posts-carousel-item .lsow-project-image .lsow-image-overlay { display: none;}

    .lsow-posts-carousel .lsow-posts-carousel-item .lsow-entry-text-wrap .entry-title
    {
    text-transform: none; font-size: 10pt;line-height:120%
    }

    .lsow-posts-carousel .lsow-posts-carousel-item .lsow-entry-text-wrap
    {
    padding: 8px 5px 5px 5px
    }
    But I am unable to find the equivalent for the Grid widget.
    Thank you

Viewing 1 replies (of 1 total)
  • Plugin Author livemesh

    (@livemesh)

    If you have not already done so, you should be using the Chrome Developer Tools or Firebug to find the selectors.

    Here are some for the Grid –

    .lsow-portfolio-wrap .lsow-portfolio .lsow-portfolio-item .lsow-project-image .lsow-image-info {
        display: none;
    }
    
    .lsow-portfolio-wrap .lsow-portfolio .lsow-portfolio-item .lsow-project-image .lsow-image-overlay {
        display: none;
    }
    
    .lsow-portfolio-wrap .lsow-portfolio .lsow-portfolio-item .entry-title a {
        font-size: 18px;
    }

    Hope this helps.

Viewing 1 replies (of 1 total)

The topic ‘Grid and post carousel selectors’ is closed to new replies.