skip to Main Content

I installed the Gtranslate plugin on my wordpress site and I would like to add some custom CSS to personalize the widget.
I would like the flags to go under each other. I would also like to add a margin at the bottom.Widget settings

I tried to add CSS with the selector .gtranslate_wrapper but it doesn’t work…
For example:

.gtranslate_wrapper{
     margin-bottom: 50px;
}

Can you help me ?

2

Answers


  1. Go to settings menu and select gtranslate option. On that page, at the bottom, you can add the css. You can read further on the plugin documentation also.

    Login or Signup to reply.
  2. very easy, use the element ID, problem solved.

    #gt_float_wrapper{padding-top: 50px!important;}
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search