cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
314
Views
0
Helpful
1
Replies

Mobile version, how to resize?

Ambra Ricchiuto
Cisco Employee
Cisco Employee

Hello,

 

my community page https://communities.cisco.com/docs/DOC-59373 is not resized when I open it through my mobile, you have to continuously scroll right and it's quite uncomfortable...

 

Thanks,

Ambra

1 Reply 1

dwaynesuarez
Level 1
Level 1

Either there might be some media queries defined within your stylesheet like

 

@media handheld, only screen and (max-width: 1024px) 
{
    //Style goes here
}

 

Which is a style defined for screens having maximum width of 1024px.

Another possibility is, styles may be defined fully in percentage. So that the styles are changed according to the window size.

Again there might be some scripts used in your code to resize. All depends on the code that you are using. There are variety of methods which fits the view according to the screen size.