Advertisement:

Author Topic: Inline style-please help  (Read 899 times)

k33n

  • Newbie
  • *
  • Posts: 36
Inline style-please help
« on: December 29, 2014, 12:11:11 pm »
Hello everyone,

I am using latest modern theme and i use search in sidebar.i want to style it but i can't find an inline style that is messing my sidebar.I looked in the entire script and could not find how to remove that inline styling.Please see pic to better understand.Thank you!

calinbehtuk

  • Sr. Member
  • ****
  • Posts: 450
Re: Inline style-please help
« Reply #1 on: December 29, 2014, 09:32:30 pm »
A little trick that worked for me.
I suppose you have not made changes to sidebar and you have the same id #sidebar
so
#sidebar #uniform-sCategory.selector {
    width: 200px !important;
}

 #sidebar #uniform-sCategory.selector span {
    width: 170px !important;
}
This trick worked for me.

design

  • Hero Member
  • *****
  • Posts: 2619
  • Osclass 3.5 MAC/PC w/ Modern Browsers
Re: Inline style-please help
« Reply #2 on: December 29, 2014, 09:43:10 pm »
yes^^

and inline styles are usually in the functions. php of your theme

k33n

  • Newbie
  • *
  • Posts: 36
Re: Inline style-please help
« Reply #3 on: December 31, 2014, 10:33:27 am »
A little trick that worked for me.
I suppose you have not made changes to sidebar and you have the same id #sidebar
so
#sidebar #uniform-sCategory.selector {
    width: 200px !important;
}

 #sidebar #uniform-sCategory.selector span {
    width: 170px !important;
}
This trick worked for me.

Yep..It worked  :) Thanks a lot!