Convert the website

active-worker

New Member
Hi Guys,

Good day
I have a web site: www dot my-portfolio-site dot site88 dot net/ and I want that the website has to be responsive and perfectly function on mobiles and tablets.

For your kind information, I know HTML and CSS coding. But I don’t know how to convert the website has to be responsive and perfectly function on mobiles and tablets.

So, please see my source code and suggest which code I should write. And where should I place it?

No more, I am waiting for your kind response.

Thank you.
 
Hi active-worker (loving the name, very creative), sorry but what your asking us to do would be considered a job, and not a quick task that someone can help you with. If you want to learn about responsive coding then please just use a search engine and find out for yourself.
 
Active-worker... less asking more joining in, you've asked 5 questions which you could argue are fundamental to your line of work. And honestly what you're asking us to do for free isn't a 'forum help' request, it's a full on job :rolleyes:
 
Give the guy a break and give him some advice and resources if thats the case guys.
This isn't Stack overflow, but it is a forum where you can help out rather than ignore the situation. He's in no way asking for free work but just a bit of support.
active-worker...if your looking to make your website responsive you should take a look a few of these resources:
http://www.copyblogger.com/mobile-responsive-design-101/
http://www.netmagazine.com/tutorials/build-basic-responsive-site-css
You should also take a look at these books:
http://www.abookapart.com/products/responsive-web-design
http://www.amazon.com/gp/product/0321821688/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=0321821688&linkCode=as2&tag=wwwawwwardsco-20
Hope this helps a little
 
Hi glenwheeler,

I am very glad that you spent your valuable time to reply my topics. I am also happy that you didn’t underestimate me like others, but appreciated my condition. Yes, your information helps me a lot to understand the topics. I hope you will continue help me this way in future as well.

Thank you so much. Keep well. :)
 
Hi active-worker
I'm not entirely sure what you're asking, but I'm guessing your new at responsive design.
To be honest it's not all that difficult to grasp the foundations of it. It's largely to do with media queries within your HTML, but mainly with your CSS. Using CSS you can tell the browser to render the site with different coding to adapt to mobile/tablet browsers using something like:
@media (max-width: 600px) { .facet_sidebar { display: none; }}
Which tells the browser that anything below 600px the sidebar should not display. Quite simple.
Some handy sites I used to understand this are:
A List Apart: http://alistapart.com/topic/responsive-design
CSS Tricks: http://css-tricks.com/css-media-queries/
But there are loads of other sites with help on this.
Like the others say, get involved with helping other people! That's why we're here! :)
 
Back
Top