Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1349861

    Hi!
    Is there a way to make darker the AVIA BUILDER in the wordpress page builder.
    I mean the pale pale grey icons from elements. Inside #layouts elements #content elements #media elements

    I can barely see them. It makes hard to work with it. Maybe some css code for it?

    #1349924

    Hey alfopalo,

    Please try this in functions.php:

    function avia_change_icon_opacity() {
      ?>
      <style>
      .shortcode_insert_button img {
        opacity: 1;
      }
      </style>
      <?php
    }
    add_action('admin_head', 'avia_change_icon_opacity');

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.