Font size problem in tabs

Hi,

I copy the same info of the body fonts into the tabs - step A, B, C.
Step A: Web Site - font came out the same size as body font, that’s what I want.
But Step B and C came out smaller.
Here is the link:
http://2018.tngva.com/web-based-marketing-solutions/

This is the code that I copy from the body font.
"

text

How can I make Step B and C’s font the same size as Step A?
Thanks.

Hello There,

Thanks for writing in! What you are doing is incorrect. You cannot insert a custom html in the tab titles. If you want to change the font size, you will have to do it using a custom css instead. Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-nav-tabs>li>a {
    font-size: 20px;
    color: blue;
}

.x-nav-tabs>.active>a, .x-nav-tabs>.active>a:hover {
    color: red;
}

I used different colors so that you can easily identify where you would want to change for the active and the default tab title colors.

Hope this helps.

Thanks for the code.
I want to know how to make the text under the tabs bigger.

Under Step A, I put this code in
"<p class="resp-p man" style="text-align: left;"><span style="color: #333333;">Starting a new business...</span></p>
I got the text same size as the body text. That’s what I want.

Under Step B, No code, the font changed and it’s much smaller.

Under Step C, I put the same code in as Step A, but the font appear to be smaller.

So how can I make all text under tabs to the size as Step A?

Thanks

Hello There,

Please make sure that you have inserted the correct and valid html code. Please also make sure that all html tags is closed. And then you can use this code:

<p class="man" style="text-align: left;"><span style="color: #333333;">Starting a new business...</span></p>

resp-p were removed in the class because it has a responsive text affecting the font size depending on the width of the container. If ever this does not work either, please provide us access so that we can take a closer look at your tab contents.

Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.