Page 1 of 1

How change the size of the menu Chinese characters?

Posted: 05 Jul 2017, 03:43
by grgim
How change the size of the  menu Chinese characters?
I want to get text  little smaller
please help me 
thanks

Re: How change the size of the menu Chinese characters?

Posted: 05 Jul 2017, 06:24
by mjau-mjau
Ok. Do you have a link to the page with the screenshots? I would like to see the code, so I can offer you custom CSS to change the font size.

Re: How change the size of the menu Chinese characters?

Posted: 05 Jul 2017, 08:05
by grgim
Do you mean my website address?

Because i think the font is still too big, I want to make it smaller
thank you very much

Re: How change the size of the menu Chinese characters?

Posted: 05 Jul 2017, 10:16
by mjau-mjau
grgim wrote:http://www.kacha.com.tw/計價方式/寫真/
Because i think the font is still too big, I want to make it smaller
thank you very much
Ok, so after looking at your screenshots, it seems you want smaller fonts in the main menu on the left? I am not sure why the red arrow is pointing down. Best way would to change sidebar main menu font size is from settings > custom > custom CSS. Adjust the .75 value as needed:
Code
body[class*='sidebar'] .nav>.menu a {
  font-size: .75rem;
}
Not 100% sure what you are referring to in the second screenshot. You mean ALL body text in all pages? Or only the text used in the TABS plugin?

Re: How change the size of the menu Chinese characters?

Posted: 06 Jul 2017, 03:31
by grgim
The main menu on the left <<<success!   thank you
The second screenshot<<<yes,I need all body text in all pages to change font size.
help me 

Re: How change the size of the menu Chinese characters?

Posted: 06 Jul 2017, 07:18
by mjau-mjau
grgim wrote:The main menu on the left <<<success!   thank you
The second screenshot<<<yes,I need all body text in all pages to change font size.
help me 
This is a bit complicated, because font sizes are set for body, and then set relative in various content modules. Try this:
Code
.content {
  font-size: .9rem;
}
@media only screen and (min-width: 641px) {
  .main p {
    font-size: .9rem;
  }
}
You may need to add additional styles for lists and alert boxes. For example:
Code
.content, .content .alert-box, .content ul {
  font-size: .9rem;
}

Re: How change the size of the menu Chinese characters?

Posted: 06 Jul 2017, 11:22
by grgim
thank a lot