Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #517024

    Hi Guys

    I am trying to style my tabs for mobile, found the code to have it not break into accordian via a support thread ( https://kriesi.at/support/topic/tabs-mobile-appearance-help/) and it’s looking good except I need my top border on the tabcontainer showing. I have this in the code

    .responsive .tabcontainer .tab, .responsive #top .alternate_color .tabcontainer, .responsive #top .alternate_color .active_tab_content {
    border: none !important;
    }
    can you help me get it to work? thanks
    Nancy

    • This topic was modified 8 years, 8 months ago by Munford.
    #517049

    Hi Munford!

    The code you show us is actually removing the border not making it for us to see it.
    Do you want to show it or hide the border?

    Cheers!
    Basilis

    #517077

    I want to hide all but the top border on the tab area on mobiles

    #517827

    Hi Nancy,

    I couldn’t see any top borders on mobile view, did you manage to get it fixed? If not then please post a screenshot highlighting what you would like to remove.

    Best regards,
    Rikard

    #517829

    I want only the top border to show – there are none now

    #517999

    Hi!

    Please add following code to Quick CSS

    @media only screen and (max-width: 768px) {
    .active_tab_conten { border-top: 1px solid #e2e2e2!important; }}

    Cheers!
    Yigit

    #518074

    Hey Yigit,
    I added this:
    @media only screen and (max-width: 768px) {
    .active_tab_content { border-top: 1px solid #e2e2e2!important; }}

    but it did not work. :(
    I have other media inquiries that are (max-width: 767) – does the size there make a difference?
    thanks for taking a look
    Nancy

    #518604

    Hi!

    code should work. Try to clear browser cache and hard refresh a few times.

    Yes it does make a difference as it defines the maximum screen size for the following code.

    Best regards,
    Andy

    #518612

    Hi Andy

    I have cleared the cache and same thing – still no top border
    see: http://imgur.com/sriI6BI ??

    I meant does it matter if the size is 768 or 767 as I have code with both sizes – which is better for ipad size?
    thanks for your help
    Nancy

    #518619

    Hi!

    Please change the code to following one

    @media only screen and (max-width: 480px) {
    .tab_titles {
        border-top: 1px solid #e2e2e2;
    }}

    Cheers!
    Yigit

    #518628

    Great! that got me the top border – see http://imgur.com/Rx6qaRW
    now I just need to make the bottom border on the active tab visible again…
    and is it possible to put a border between the 2 rows?
    thanks so much
    Nancy

    • This reply was modified 8 years, 8 months ago by Munford.
    #519318

    Hey!

    about which bottom border are you talking about? and between which 2 rows do you wish to have a border? Can you show us what you want to achieve please?

    Best regards,
    Andy

    #519331

    Hey Andy
    I would like the border to show below the active tab title HOTEL (see here http://imgur.com/Rx6qaRW)
    and if possible a border under the tab titles: OVERVIEW / ITINERARY / PRICING, that is between the two rows of tab titles.
    thanks
    Nancy

    #519344

    Hi!

    try this code:

    .responsive #top .main_color .tabcontainer .active_tab {
    border-bottom: red 1px solid !important;
    }
    

    Best regards,
    Andy

    #519508

    thanks I will work on it.

    #519721

    Hi,

    Great, let us know how you get on with it.

    Thanks,
    Rikard

    #529341

    thanks I figured it out.

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘tab styling mobile – top border’ is closed to new replies.