Okay
  Public Ticket #2719571
Styling
Closed

Comments

  •  7
    marknorm14 started the conversation

    hi...

    just a couple of queries on.. http://guildensutton.normandthen.co/services/

    1. I have a sticky menu then a tabbed section. How do I set it so that when I go to the tabbed section, there is some space/padding below the sticky submenu?

    2. how do I style the tabs text colour?

    3. Finally, on http://guildensutton.normandthen.co/about/ you will see the  two small logos under the first bio which are set as one single image. Is it possible to set two single images alongside each other?


    thanks as always

    not

  •  2,721
    Andrew replied

    Hi Marknorm,

    1. Please try this css:

    .theiaStickySidebar {
        padding-top: 53px !important;
    }

    2. Please try this css:

    .nectar-scrolling-tabs .scrolling-tab-nav a {
        color: blue;
        font-size: 25px;
        font-family: monospace;
    }

    3. You can set the row layout as shown below:

    9574317629.png

    Thanks.

  •  7
    marknorm14 replied

    thanks Andrew...


    1. that helps a little...but then i still have the issue with the content of the tab being too close still (see attached)

    3. that doesn't work I'm afraid as it is already in a row.


    also, on http://guildensutton.normandthen.co/services/ on the tabs...should the orange indicator move to the relevant tab?


    thanks again


  •  7
    marknorm14 replied

    actually...on the tab indicator, it only isnt moving in safari

  •  2,721
    Andrew replied

    Hi Mark,

    1. Please try this css:

    .nectar-scrolling-tabs .scrolling-tab-mobile-title {
        min-height: 56px;
    }

    2. I can see the orange indicator moving to the relevant tab and that is how the feature works with the tabs selection. Please let us know whether we are missing something on this issue.

    3. Please send in your admin credentials so that we may look into this further.

    Thanks.


  •  7
    marknorm14 replied

    thanks andrew....

    on http://guildensutton.normandthen.co/services/

    is there a way I can hide the tab name on mobile? (as you'll see it's now repeated on mobile)

    thanks

    norm

  •  7
    marknorm14 replied

    also.. on http://guildensutton.normandthen.co/fees/


    can i set the tabs to fill the width?

    and can i set different colours for the tabs? 

    thanks

  •  2,721
    Andrew replied

    Hi There,

    1. Please try this css for full width:

    a.active-tab {
        width: 1136px;
    background-color: red !important;
    }
    .tabbed[data-spacing="side-45px"]:not([data-style="vertical"]) .wpb_tabs_nav li a, .tabbed[data-spacing="side-45px"]:not([data-style="vertical"]) .wpb_tabs_nav li .active-tab {
        background-color: black;
    }

    2. Please try this css to remove duplicates:

    @media only screen and (max-width: 999px){
    .nectar-scrolling-tabs .scrolling-tab-mobile-title .inner {
        display: none;
    }
    }

    Thanks.

  •  7
    marknorm14 replied

    Hi Andrew...

    thanks but not quite what I'm after...so on http://guildensutton.normandthen.co/fees/

    id like both tabs together to be full width - so both 50%.

    then the colours id ideally like them to stay the same so for example first tab stays purple, second tab blue


    hope you can help

    thanks


  •  2,721
    Andrew replied

    Hi There,

    Please try this css:

    .tabbed[data-spacing="side-45px"]:not([data-style="vertical"]) .wpb_tabs_nav li a, .tabbed[data-spacing="side-45px"]:not([data-style="vertical"]) .wpb_tabs_nav li .active-tab {
        padding-left: 532px;
        padding-right: 45px;
    }

    Thanks.

  •  7
    marknorm14 replied

    sorry, no....(see attached)

    i need them to sit alongside each other


    thanks

  •  7
    marknorm14 replied

    sorry..any update on this?

    many thanks as always


    norm


  •  2,721
    Andrew replied

    Hi There,

    Apologies for the delay, please share your wp-admin credentials so that I can have a closer look at the tabs.

    Thanks.

  •   marknorm14 replied privately
  •  7
    marknorm14 replied

    Hi Andrew - did you manage to log in?

    thanks

  •   marknorm14 replied privately
  •  8,402
    Tahir replied

    Hey Again,

    Sorry for the late turn around, we can get overwhelmed sometimes by the number of tickets. 

    Could you let me know what still needs to be done so i can quickly provide the Custom CSS for it?.

    Thanks 


    ThemeNectar Support Team 

  •  7
    marknorm14 replied

    no worries at all - i understand...

    so id like http://guildensutton.normandthen.co/fees/ to look as much like attached as poss...

    with those tabs remaining the same colour when clicked

    thanks again 

  •  8,402
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .tabbed[data-style*="material"][data-color-scheme="extra-color-1"] ul li:first-child a {
        background: #8ad1ef !important;
    }
    .tabbed[data-style*="material"][data-color-scheme="extra-color-1"] ul li:last-child a {
        background: #525c8e !important;
    }
    .tabbed[data-style*="material"] .wpb_tabs_nav li {
        width: 50%;
    }
    .tabbed[data-style*="material"] .wpb_tabs_nav li:first-child {
        padding-right: 4px;
    }

    Thanks


    ThemeNectar Support Team 

  •  7
    marknorm14 replied

    great - thanks...

    can the css be tweaked so that the tabs site alongside each other on mobile? they are stacked unevenly at min


    thanks again 

  •  8,402
    Tahir replied

    Use this additional CSS

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        .tabbed[data-style="material"] .wpb_tabs_nav li a, .tabbed[data-style="material"] .wpb_tabs_nav li {
            display: inline-block !important;
        }
        .tabbed[data-spacing="side-45px"]:not([data-style="vertical"]) .wpb_tabs_nav li a, .tabbed[data-spacing="side-45px"]:not([data-style="vertical"]) .wpb_tabs_nav li .active-tab {
            padding-left: 35px;
            padding-right: 35px;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  7
    marknorm14 replied

    brilliant...perfect!

    thanks as always