- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2017 01:07 AM
Hello all,
Can some one help me to fix this issue?
In the Service Portal KB article based on the screen resolution how can I adjust the container.
Dynamically adjust based on the screen resolution.In the Bigscreen user want to scroll the knowledge artilcle to see the full image.How can it fixed?
Big screen
Small Screen
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2017 02:51 AM
Hi
As default boostrap does not go above 1170 pixels in container width. You can overwrite this in the page specific CSS.
E.g. you can say that for displays which are more than 3000 pixels, you want the container width to be 2800
@media (min-width: 3000px) {
.container{
width:2800px;
}}
Also see Bootstrap Big Grid -- Larger Grid Dimensions for Bootstrap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2017 01:43 AM
Hi Saranya,
Procedure
- Navigate to Service Catalog > Catalog Variables > Variable Default Size to list configurable variables.
- Select a width size from the available options to set as default for each variable.
Option Description 25% Configures the variable to occupy 25% of the available screen size. 50% Configures the variable to occupy 50% of the available screen size. By default, some variables require a minimum of 50% width. 75% Configures the variable to occupy 75% of the available screen size. 100% Configures the variable to occupy 100% of the available screen size.
Variable Width | Displays the default width size of the variable. To override default width, select a new width size from the list of options. | CheckBox, Date, Date/Time, HTML, List Collector, Lookup Multiple Choice, Lookup Select Box, Macro, Macro with Label, Masked, Multi-Line Text, Multiple Choice, Numeric Scale, Reference, Select Box, Single-Line Text, UI Page, Wide Single-Line Text, Yes/No, Email, URL |
Pease Refer,
Configure default variable width
Thanks,
Rajashekhar Mushke
Rising star : 2022 - 2024
Community Leader -2018
Connect me on LinkedIn : Rajashekhar Mushke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2017 02:02 AM
I am looking in the service Portal not variable type
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2017 02:51 AM
Hi
As default boostrap does not go above 1170 pixels in container width. You can overwrite this in the page specific CSS.
E.g. you can say that for displays which are more than 3000 pixels, you want the container width to be 2800
@media (min-width: 3000px) {
.container{
width:2800px;
}}
Also see Bootstrap Big Grid -- Larger Grid Dimensions for Bootstrap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2017 04:45 AM