Search…

X3 Photo Gallery Support Forums

Search…
 
grgim
Topic Author
Posts: 5
Joined: 15 Feb 2016, 12:37

How change the size of the menu Chinese characters?

05 Jul 2017, 03:43

How change the size of the  menu Chinese characters?
I want to get text  little smaller
please help me 
thanks
Last edited by grgim on 10 May 2018, 23:30, edited 1 time in total.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14009
Joined: 30 Sep 2006, 03:37

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

05 Jul 2017, 06:24

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.
 
grgim
Topic Author
Posts: 5
Joined: 15 Feb 2016, 12:37

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

05 Jul 2017, 08:05

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
Last edited by grgim on 10 May 2018, 23:30, edited 1 time in total.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14009
Joined: 30 Sep 2006, 03:37

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

05 Jul 2017, 10:16

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?
 
grgim
Topic Author
Posts: 5
Joined: 15 Feb 2016, 12:37

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

06 Jul 2017, 03:31

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 
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14009
Joined: 30 Sep 2006, 03:37

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

06 Jul 2017, 07:18

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;
}
 
grgim
Topic Author
Posts: 5
Joined: 15 Feb 2016, 12:37

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

06 Jul 2017, 11:22

thank a lot