Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1313088

    Hi! I would like to format the tabs so the active tab has a thick blue line underneath it and the non active tabs do not have a line underneath. Can you help me with the code for this?

    Also, I have removed the border from the titles and the content but would like a border across the top and bottom of the content but not the sides. Please help.

    Finally, I have a gallery where I’d like to remove the thin border around all the images. I was able to remove it from the thumbnails but not the main image.

    Thanks!

    #1313649

    Hey julhobart,

    Sorry for the late reply. The page you linked to has htaccess protection, could you share details in private, so that we can view it please?

    Best regards,
    Rikard

    #1319229

    Hi, I was able to figure this out but would also like to apply the settings to a mobile screen. For smaller screens, I’d still like the blue line and bold font on the active tab and no grey border anywhere.

    Login details below.

    Thanks!
    Julie

    #1319485

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .responsive #top .main_color .tabcontainer .active_tab {
        background-color: transparent;
        color: #333;
        border-bottom: 5px solid blue;
    }
    
    .responsive #top .main_color .av_tab_section, .responsive #top .main_color .tabcontainer {
        border-color: transparent;
    }
    }

    Best regards,
    Rikard

    #1319550

    Thank you! This is very close! There is still a thin grey border above and below each tab title. Is there a way to remove that?

    #1319711

    Hi,

    Please try this CSS instead:

    @media only screen and (max-width: 767px) {
    .responsive #top .main_color .tabcontainer .active_tab {
        background-color: transparent;
        color: #333;
        border-bottom: 5px solid blue;
    }
    
    .responsive #top .main_color .av_tab_section, .responsive #top .main_color .tabcontainer {
        border-color: transparent;
    }
    
    .js_active .tab {
        border-width: 0;
    }
    }

    Best regards,
    Rikard

    #1320020

    Thank you, this worked!

    #1320185

    Hi,

    Great, I’m glad that you got it working, and thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1320284

    Thanks, you can close

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Formatting Tabs and gallery’ is closed to new replies.