Computers & Electronics

Software for responsive web design

  • Last Updated:
  • Mar 25th, 2022 1:33 pm
[OP]
Deal Fanatic
Sep 16, 2013
7432 posts
5061 upvotes
SW ON

Software for responsive web design

Is there software that would allow me to do simple WYSIWYG web design and save pages that follow responsive web design principles, so I can upload them to the server? I can't run server-side scripts, not even PHP I think, so it should rely on client-side HTML, CSS etc. Last time I designed simple pages manually and it was painful. I wonder if anything exists that helps. I'd like pages looks nice on all kinds of devices, mobile and large screens, and I don't need anything fancy.
23 replies
Sr. Member
Dec 6, 2020
937 posts
1043 upvotes
Is WYSIWYG web design even a thing anymore?

You can do responsive design with static site generators (e.g. jekyll or Hugo), or by writing HTML+CSS manually, but these are decidedly not WYSIWYG workflows.
[OP]
Deal Fanatic
Sep 16, 2013
7432 posts
5061 upvotes
SW ON
middleofnowhere wrote: Is WYSIWYG web design even a thing anymore?

You can do responsive design with static site generators (e.g. jekyll or Hugo), or by writing HTML+CSS manually, but these are decidedly not WYSIWYG workflows.
Thanks. Is WYSIWYG not a thing anymore? I have no idea. I am looking into static site generators. Trying to figure out if the two you mentioned generate responsive pages.
Deal Addict
Apr 29, 2018
2310 posts
1683 upvotes
Vancouver
I don't think anything like that exists anymore. Probably be easier to use WP locally, on say MAMP/WAMP and then export the pages as HTML. There are plugins that can do that, or just do a "Save As"
Can't Stop. Won't Stop. Game Stop
[OP]
Deal Fanatic
Sep 16, 2013
7432 posts
5061 upvotes
SW ON
kramer1 wrote: I don't think anything like that exists anymore. Probably be easier to use WP locally, on say MAMP/WAMP and then export the pages as HTML. There are plugins that can do that, or just do a "Save As"
Is WP Word Press?
Deal Addict
Apr 29, 2018
2310 posts
1683 upvotes
Vancouver
Yup
Can't Stop. Won't Stop. Game Stop
Sr. Member
Dec 6, 2020
937 posts
1043 upvotes
alpovs wrote: Does WP generate responsive pages?
Responsive design is just CSS with media queries to reflow pages depending on device screen size. Any content management system, including WP and static site generators, can produce responsive pages provided you use (or write) a template that uses CSS media queries appropriately.
Deal Addict
Apr 29, 2018
2310 posts
1683 upvotes
Vancouver
alpovs wrote: Does WP generate responsive pages?
There are a ton of themes available for WP. The ones that come by default should be responsive and should look pretty decent on most devices
Can't Stop. Won't Stop. Game Stop
[OP]
Deal Fanatic
Sep 16, 2013
7432 posts
5061 upvotes
SW ON
middleofnowhere wrote: Responsive design is just CSS with media queries to reflow pages depending on device screen size. Any content management system, including WP and static site generators, can produce responsive pages provided you use (or write) a template that uses CSS media queries appropriately.
kramer1 wrote: There are a ton of themes available for WP. The ones that come by default should be responsive and should look pretty decent on most devices
Thanks! I suppose googling for themes/templates should produce some results. I had an impression there should be software that will write these media queries for me appropriately. I guess I was wrong.
Deal Addict
Apr 13, 2005
1733 posts
1746 upvotes
Markham, ON
WordPress requires PHP and MySQL.
But all current WordPress themes are responsive.
.
Deal Addict
Jan 17, 2009
4159 posts
4396 upvotes
Toronto, Ontario
Depends on the size/budget of the site. Usually you do media query manually because it always varies based on the content and your target audience/demographics.

Many frameworks give you shortcuts to make it quicker.

Most (good) themes you can purchase have some responsiveness built in.
Sr. Member
Dec 6, 2020
937 posts
1043 upvotes
alpovs wrote: Thanks! I suppose googling for themes/templates should produce some results. I had an impression there should be software that will write these media queries for me appropriately. I guess I was wrong.
Decent templates should have media queries and/or equivalent Javascript built-in. You will still need to define how you want your site to change based on device characteristics, however, as this is something that can't be done automatically.
[OP]
Deal Fanatic
Sep 16, 2013
7432 posts
5061 upvotes
SW ON
middleofnowhere wrote: Decent templates should have media queries and/or equivalent Javascript built-in. You will still need to define how you want your site to change based on device characteristics, however, as this is something that can't be done automatically.
What editor do you use for coding? Since specialized software for web design doesn't seem to exist anymore I was thinking about using Notepad++.
Sr. Member
Dec 6, 2020
937 posts
1043 upvotes
alpovs wrote: What editor do you use for coding? Since specialized software for web design doesn't seem to exist anymore I was thinking about using Notepad++.
I don't do much web design at the moment, but I use Visual Studio Code for pretty much everything that resembles source code. VS Code has HTML code completion, which is handy for people who don't do enough HTML to have memorized the entire standard.
Deal Addict
Apr 13, 2005
1733 posts
1746 upvotes
Markham, ON
alpovs wrote: What editor do you use for coding? Since specialized software for web design doesn't seem to exist anymore I was thinking about using Notepad++.
middleofnowhere wrote: I don't do much web design at the moment, but I use Visual Studio Code for pretty much everything that resembles source code. VS Code has HTML code completion, which is handy for people who don't do enough HTML to have memorized the entire standard.
VS code is the defacto code editor for webdevs in 2022.

There are the IntelliJ products, Atom, Sublime, VIM, Notepad+, but VS Code is the king right now.

It's lightweight (compared to Webstorm) and the extension library is 2nd to none.
.
Sr. Member
Feb 22, 2006
631 posts
242 upvotes
If you're stuck with static HTML, you'll pretty much need to do the coding yourself. If you feel like doing yourself, then just watch some youtube videos on "flexbox" and "grid" and it should help you out. If you need it done in a flash, I don't mind doing it for a small fee or I'm sure someone else on here could do it as well.
Deal Addict
Jan 17, 2009
4159 posts
4396 upvotes
Toronto, Ontario
middleofnowhere wrote: I don't do much web design at the moment, but I use Visual Studio Code for pretty much everything that resembles source code. VS Code has HTML code completion, which is handy for people who don't do enough HTML to have memorized the entire standard.
GT_647 wrote: VS code is the defacto code editor for webdevs in 2022.

There are the IntelliJ products, Atom, Sublime, VIM, Notepad+, but VS Code is the king right now.

It's lightweight (compared to Webstorm) and the extension library is 2nd to none.
+1. VS Code is the best at the moment. I used to use Sublime for years and years but switched to VS Code last year after seeing our whole development team using it.
[OP]
Deal Fanatic
Sep 16, 2013
7432 posts
5061 upvotes
SW ON
Thank you for all the responses. Can anyone recommend a tool (a website or a browser tool) for viewing webpages at different resolutions in mobile/non-mobile browsers? Basically something that would emulate the look on various devices. I think once I saw a link to one website that allowed for this but didn't take a note of it. Or maybe a browser web development tool. I think I found such a tool in Firefox. Maybe there is something better.
Sr. Member
Dec 6, 2020
937 posts
1043 upvotes
alpovs wrote: Thank you for all the responses. Can anyone recommend a tool (a website or a browser tool) for viewing webpages at different resolutions in mobile/non-mobile browsers?
Firefox has this built-in. Open the web developer tools pane (menu -> more tools -> web developer tools, or just press ctrl-shift-i) then click on the cellphone-like icon on the top right of the web developer tools menu bar.

I would be surprised if Chrome can't do this as well, but I wouldn't know as I don't use Chrome.

Top