Make website translator bigger

Can we PLEASE make the widget bigger?

2 Likes

Hi @Pebbles_to_Peaks_Tut,
you can try it with that. Paste it into custom CSS and see what happens. :upside_down_face:

[class*="container__Wrapper-sc"], [class*="dropdown__Container-sc"]{
transform: scale(1.5);
}
[class*="dropdown__Container-sc"]{
margin: 20px;
}
3 Likes

Hi there, @Pebbles_to_Peaks_Tut :wave:

You can change the widget’s size right in the settings:

However, if you’d like to set a custom size of your widget, here is a slightly adjusted version of the Sina’s code:

[class*="Icon__IconContainer-sc"]:first-child,
[class*="Icon__IconContainer-sc"]:first-child svg {
  width: 30px;
  height: 30px;
}

[class*="name__NameContainer-sc"] {
  font-size: 26px;
  line-height: 30px;
}

[class*="Icon__IconContainer-sc"]:last-child,
[class*="Icon__IconContainer-sc"]:last-child svg {
  width: 18px;
  height: 18px;
}

Check it out and let me know if it worked :slightly_smiling_face:

1 Like

at least this is working in my case!

1 Like