- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â06-19-2018 02:21 AM
Suppose that i have 3 containers in my page and i have to apply page specific css for container 2.
So anyone can help me with css code specifically for container 2.
Solved! Go to Solution.
- Labels:
-
Service Portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â06-20-2018 06:33 AM
Do below
Open page that you want to modify > Select container > add CSS class

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â06-19-2018 01:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â06-19-2018 10:38 PM
Hi Harshit,
You will have to use CSS Class for this requirement along with some code as:
container{
background-color: <name of the color>
}
However, I have also tried to change CSS of a container through Edit Page Properties but what it does is, it changes all Containers color/properties (in identical manner) since it is applied for entire Page.
Another approach which I will suggest is, since you will be creating widgets for those containers, you can also provide appropriate <div> & <class> at the HTML side and use them in CSS-SCSS section for configuring/changing background-color.
Hope it helped!
Mark my answer as Correct/Helpful if that resolves your query.
Regards,
Vishrut

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â06-20-2018 06:33 AM
Do below
Open page that you want to modify > Select container > add CSS class
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â06-20-2018 10:18 PM
Thanks Mike this resolved my issue