Hello
@fleb ,
We can apply the required CSS on a specific page, using the below code
`jQuery(".Skin .Separator").css({"margin":"0px 20px"});`
And similarly for other codes
Hi
@Shashi,
thank you very much again. I'm able to solve my problem with this. However is there some way how to do it if I want to apply it only to a subset of question on one page?
@fleb,
You can make CSS specific to a page, by adding it in a `<style>` tag to any question text on the page instead of in Look & Feel.
You can make CSS specific to a question by adding the question's id to the rule's selector. For example:
```
#QID1 .QuestionBody { padding:0px 1px 0px 1px; }
```