Hope4You
Hope4You

Reputation: 1947

add padding-top to the entire jQuery Mobile page

I'm looking to add a padding-top of 20px to my entire jQuery Mobile page. (a data-role="header" data-position="fixed" element is at the top of the page). How can I accomplish this?

body{
    padding-top: 20px;
}

Doesn't work. How can I fix this?

Upvotes: 0

Views: 1201

Answers (1)

chris
chris

Reputation: 4867

Whst´s about this one here?

.ui-page {
    padding-top: 20px;
}

This one`s better?

.ui-content {
    margin-top: 40px;
}

Upvotes: 1

Related Questions