• Resolved bkjproductions

    (@bkjproductions)


    Not quite sure how to describe this, since I am not the person who installed this plugin on the client’s site. (I just have a temporary solution.)

    There is a widget for tabs that could use a little CSS tweak. The item has a class of uagb-tabs__panel uagb-tabs__align-left and contains a series of LI’s with class of uagb-tab. Each of those has an A HREF inside it with a class of uagb-tabs-list.

    A client reported that people were having trouble using the tabs. Clicking on the text of the tab is the only way to make it work— but visually, people are clicking on the button/tab area that contains no text.

    When I examined it, it appears that the LI element has padding on it, so while it appears that the element is something-you-can-click, in fact it’s only the A tag inside the LI that is clickable.

    What I would suggest is that you alter the padding on the LI to NONE, and apply the padding to the A tag.

    Below is the code that works as a fix, but the text is not center-aligned, unfortunately. At least, though, it will remove the padding from the LI and put it on the A tag, and then the interface is more useful. I leave it to some other more clever person to figure the centering part.

    a.uagb-tabs-list {
        width: 100%;
        margin: 0 auto;
        border: 1px solid black;
        padding: 1em;
    }
    
    .uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel .uagb-tab {
        border: none;
        padding: 0;
    }
    
    a.uagb-tabs-list:hover {
        opacity: .8;
        background-color: aliceblue;
        color: white!important;
    }

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @bkjproductions ,

    We’re sorry for the inconvenience caused to you.

    I will surely convey your feedback to our concerned developers. We are always keen to listen to our customers and to receive their feedback. This is the best way to improve our products and services and maintain our client’s satisfaction. ???

    I’ll put forward your thought about this to our team and if feasible we will try to improve the scenario in our future updates.

    If you have any further queries, please don’t hesitate to contact us.

    Hello @bkjproductions ,

    I have already taken this up as a suggestion and added it to our to-do list so that our developers can consider it in one of our future updates.

    I am making the query resolved for now.

    You can always get in touch with us through our website in case you wish to follow up or drop in any other suggestions.

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tabs and LI and A’ is closed to new replies.