Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2182562
Removing opacity of Title Style 12
Closed

Comments

  • Streamliners started the conversation

    Hi,

    As you can see in the attached picture, in the standard configuration menu when you select for the Title Style 12 the respective same blue background color, it will display differently because there is an opacity value set to 0.7 for the little triangle. This is coming from your standard CSS:

    .penci-sidebar-content.style-12 .penci-border-arrow .inner-arrow:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 32px solid #000;
    border-right: 20px solid transparent;
    z-index: 1;
    right: -20px;
    opacity: 0.7;
    background-color: transparent !important;
    }

    I tried to add a Custom CSS with exactly the same content but replacing opacity: 0.7 with opacity: 1 but it does not impact how the background of the triangle is displayed.

    I have installed and activated the child theme and added the custom CSS as follows:

    .penci-sidebar-content.style-12 .penci-border-arrow .inner-arrow:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 32px solid #000;
    border-right: 20px solid transparent;
    z-index: 1;
    right: -20px;
    opacity: 1;
    background-color: transparent !important;
    }

    Why is it not changing the color properly?

    Thanks.

  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to do that:

    .penci-homepage-title.style-12 .inner-arrow:before, 
    .penci-sidebar-content.style-12 .penci-border-arrow .inner-arrow:before,
    .penci-homepage-title.style-12.pcalign-center .inner-arrow:after, 
    .penci-sidebar-content.style-12.pcalign-center .penci-border-arrow .inner-arrow:after, 
    .penci-homepage-title.style-12.pcalign-right .inner-arrow:after, 
    .penci-sidebar-content.style-12.pcalign-right .penci-border-arrow .inner-arrow:after{ opacity: 1; }
    

    Best Regards,

    PenciDesign

  • Streamliners replied

    Thank you - it worked, you can close the ticket!

    Kind regards,

    Zsolt