Okay
  Public Ticket #1490132
Recent Post Element Styles
Closed

Comments

  • Aurust started the conversation

    Hi I was wondering if it is possible to change the items in the Recent Post style "Multiple Large Featured". I wanted to edit some of the items such as the progress bar colours and remove some elements like the By____ Poster name.

  •  2,723
    Andrew replied

    Hi Aurust,

    That element does not have options to make those adjustments and maybe you can use custom CSS to remove the items you do not want on it.

    For removing that by__post name use this CSS:

    .nectar-recent-posts-single_featured.multiple_featured .active .grav-wrap{
        display:none;
    }
    

    For changing the color of the progress bar then use this CSS:

    body .nectar-recent-posts-single_featured.multiple_featured .controls li.active:before{
        background-color:white !important;
    }
    

    add both of these bits of CSS to salient \ general settings - css script related - custom css code.

    Hope this helps.