Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #836763

    Dear support team,

    The Tab titles of the Layout Elements in the Avia Layout Builder are placed on the center of the page by default.
    Is there a way to make the Tab title aligned the left align?
    And I also want to know how to expand the width of the tab title.

    Regards,
    Adrien Park.

    #837279

    Hey JRMAX85886,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #837300

    Dear Rikard,
    Thank you for your reply.

    Here is the link, but the site is still incompleted.

    I want to make the two tabs, the CheckMate for Mobile and the CheckMate for PC, that you can see on the link, aligned left.
    And I also want to know how to expand the width of the tab title.

    Regards,
    Adrien Park.

    #837755

    Hi,

    Thanks for the link. Please try the following in Quick CSS under Enfold->General Styling:

    .av-tab-section-tab-title-container {
      text-align:left; 
    }

    Best regards,
    Rikard

    #850949

    Dear Rikard,

    I want the page to be shown like the link below. Is it possible?
    http://storyline360.com/_temp/tab-title.html

    Best regards,
    Adrien Park.

    #851391

    Hi,

    Please add the following css code.

    @media only screen and (min-width: 989px) {
      /* Add your Desktop Styles here */
      .av-tab-section-tab-title-container {
        text-align: left;
        padding: 20px 50px 0 50px;
        max-width: 1130px;
        margin: 0 auto;
      }
    
      .av-outer-tab-title {
          display: inline-block;
      }
    
      .av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
          width: auto;
          margin-right: 10px;
        }
    }

    This is going to be applied on desktop view only. It’s not possible on smaller screens.

    Best regards,
    Ismael

    #854665

    Dear Ismael,

    Thank you for your CSS code.
    Could you let me also know how to change background-color of the active tab into gray color like the link below?
    http://storyline360.com/_temp/tab-title.html

    Best regards,
    Adrien Park.

    #854823

    Hi,

    Please use this css code to change the activate state color.

    #top .av-section-tab-title.av-active-tab-title {
        background: gray;
        color: #ffffff;
    }

    Best regards,
    Ismael

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