Naga Prakash
asked 10 years ago

Added some long posts but those are not displaying good on my mobile browse

1 Answers
Wilfred
answered 10 years ago

The issue you have maybe was caused by wrong styling for different screen layout.
In order to custom the style on Desktop, you need to follow this sample:

@media only screen and (min-width: 986px) {
/* Style for deskeop */
}

Example: 

@media only screen and (min-width: 986px) {
#sidebar {
width: 250px;
}

#main {
padding-left: 280px;
}
}

As for tablet and mobile:

@media only screen and (max-width: 985px) {
/* Style for tablet and mobile*/
}

Hope this helps!

Powered by DW Question & Answer Pro