Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #291696

    Is there a way to add a transparent white text box to specific Special Heading texts? Or is that only possible with the text block, and if so, how do I?

    #291808

    Hey!

    Can you post a screenshot/mockup of what would you want to achieve?

    Best regards,
    Josue

    #291847
    This reply has been marked as private.
    #291870

    Hey!

    Could you upload it to Imgur or dropbox? the link you posted is returning:

    Looks like the image is no longer here.

    Regards,
    Josue

    #292175
    This reply has been marked as private.
    #292182

    Hi!

    Try doing something like this:

    Regards,
    Josue

    #292187
    This reply has been marked as private.
    #292192

    Do you have a link to the page where you are trying this?

    Regards,
    Josue

    #292206
    This reply has been marked as private.
    #292207
    This reply has been marked as private.
    #292263

    Hey!

    Try adding this code to the Quick CSS:

    .avia-section .flex_column {
        background: rgba(255, 255, 255, 0.5);
    }
    

    Cheers! 
    Josue

    #292509

    That works to an extent.. Except it creates boxes also behind every icon, accordion, and separator I have too…

    #292574

    Set a custom ID to those colors section and change the code accordingly:

    #transparent-section .flex_column {
        background: rgba(255, 255, 255, 0.5);
    }

    Cheers!
    Josue

    #293027

    That didn’t seem to add anything for me.. However when I added:

    h1.av-special-heading-tag {
    background: rgba(255,255,255,0.75);
    padding: 10px;
    }

    With the custom tag, it gave me the box, but only behind the actual heading and not the sub-heading. Anyway to get that too?

    #293038

    nevermind, I got it with your code. Thanks!

    #293045

    Guess I spoke too soon… All the columns that are just “spacers” so I can move the text to the right or left side of the picture, are showing little white lines with that code.

    #293211

    Hey!

    Alright. Please remove this code:

    #transparent-section .flex_column {
        background: rgba(255, 255, 255, 0.5);
    }

    Add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit the elements where you want to add a transparent background then Aadd a unique css selector on “Custom Css Class” field. For example, add “transparent-block”.

    You can add something like this on your custom.css or Quick CSS:

    .transparent-block {
    background: rgba(255, 255, 255, 0.5);
    }

    In your case, edit the special heading element. Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/`

    Cheers!
    Ismael

    #294409

    Perfect! Thank you!

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘Transparent Text Boxes’ is closed to new replies.