Making a current wordpress site responsive?

8 replies
  • WEB DESIGN
  • |
Is it possible to make a current wordpress site responsive?

Best Regards

Matt
#current #making #responsive #site #wordpress
  • Profile picture of the author CoachManny
    I've been playing with the idea of setting up a new site that I could call my own and using Wordpress themes already in place for my company.

    I came across this article, maybe it could help.

    http://vandelaydesign.com/blog/web-d...sponsive-site/

    Manny
    Signature

    Manny Rodriguez Blog:
    www.coachmannyrodriguez.com

    {{ DiscussionBoard.errors[7799034].message }}
    • Profile picture of the author mattpaul2000
      Originally Posted by CoachManny View Post

      I've been playing with the idea of setting up a new site that I could call my own and using Wordpress themes already in place for my company.

      I came across this article, maybe it could help.

      http://vandelaydesign.com/blog/web-d...sponsive-site/

      Manny
      That's cool I saw that earlier. Just a bit tricky to implement, if it goes wrong but I will take a look.
      Signature
      {{ DiscussionBoard.errors[7799079].message }}
  • Profile picture of the author clickbump
    Absolutely. You just need to add a stylesheet (or a custom css block) to your theme that utilizes media queries to reset your site elements for specific device widths.

    For example, you might add this to begin:

    Code:
    @media only screen and (max-width:850px){
    img{max-width:100%;float:none}
    }
    That's a basic example, but that's really the nuts and bolts of responsive design. You establish a device size, in this case 850 pixels and less, and apply specific CSS directives that will only apply when the viewport matches those parameters.

    Hope that helps. Aaron Gustafson is the godfather of responsive design (he coined the term "Adaptive Design" which has morphed into "Responsive Design"). You might check out his book on Amazon. Its the responsive design bible
    Signature
    {{ DiscussionBoard.errors[7804168].message }}
  • Profile picture of the author oknoorap
    Learn CSS framework such as twitter bootstrap or zurb foundation, or if you're good at wordpress, themeid [dot] com is good for responsive framework
    {{ DiscussionBoard.errors[7804282].message }}
  • Profile picture of the author Michael71
    I prefer starting from scratch instead of adding some media queries.

    ZURB Foundation is my favourite framework.
    Signature

    HTML/CSS/jQuery/ZURB Foundation/Twitter Bootstrap/Wordpress/Frontend Performance Optimizing
    ---
    Need HTML/CSS help? Skype: microcosmic - Test Your Responsive Design - InternetCookies.eu

    {{ DiscussionBoard.errors[7804594].message }}
  • Profile picture of the author naoshad
    Originally Posted by mattpaul2000 View Post

    Is it possible to make a current wordpress site responsive?
    You can try Skeleton or foundation or twitter bootstrap for responsive design.. or you can go for a freelancer who has expertise in responsive design!

    Best of luck.
    {{ DiscussionBoard.errors[7805483].message }}
  • Profile picture of the author bloggermak
    replace the static values with the % .. that's all
    {{ DiscussionBoard.errors[7807990].message }}

Trending Topics