Reputation: 11
Im trying to make my tumblr mobile friendly. As in when i go to the site on a mobile it will look and act the same as the main site but then smaller. At the moment its way too big. I have tried making @media codes in and out of .css. I have also added the:
<meta name="viewport" content="width=device-width; initial-scale=1.0">
(with no luck.)
I think ive come to my end with it and I serious need help. I dont want to spend money on buying a monthly site just to convert it as i'm sure there is a way out (but i just haven't found it yet ) My coding skills are quite new (so please break it down) but im a fast learner ;)
the site: www.wordlessmedia.com
Upvotes: 0
Views: 4123
Reputation: 2239
Making Tumblr blogs behave nice on mobile devices follows the same rules as with normale HTML pages; HTML as well as CSS have to be edited.
<meta name="viewport" content="width=device-width" />
or <meta name="viewport" content="width=device-width; initial-scale=1.0">
to your HTML templateAs a rule of thumb for a simple responsive CSS strategy:
%
instead of px
pr em
.)img, video {max-width:100%}
; this will scale images down if there is not enough spaceSee http://blog.3960.org/ for a live example of a responsive Tumblr blog (I have to admit that this is my blog :)). There is a small stylesheet at http://cdn.3960.org/_style/style.css, which defines some things fluid, and other things by settings breakpoints.
Upvotes: 2