Brainstorm your design

Which are the best techniques to brainstorm you web design with others. And how effective it is?

For me personally, I tend to write down (or write up a list of features) what I want my application to look and function like. If the feature doesnā€™t sound do-able, Iā€™ll scratch it off my notes. When I create the application, Iā€™ll start off small like writing a small 1 single file to test certain logic or feature. Then if I see the results I want, Iā€™ll then write up a class and make it a little more advanced.

I usually start by creating a common menu then linking to blank pages to be filled with content.

I donā€™t usually start with the visuals right away. I tend to do the logic first. Then Iā€™ll use Boostrap or something to do the visuals later.

It is not visuals that is started.

Create a folder with the project name and a ā€œHello worldā€ page which includes/requires the incs/_menu.php.

The ā€œ_menu.phpā€ file starts with declaring an array of menu items which are converted to HTML Nav links.


<?php declare(strict_types=1);

$items = [
ā€˜Homeā€™,
ā€˜Aboutā€™,
ā€˜Contactā€™,
ā€˜Idea-001ā€™,
ā€˜Idea-002ā€™,
];
// for each loop to create Nav menu items
1 Like

That makes more sense now. Your initial comment sounded like you start with the visuals first. I typically head to the drawing board before I start on anything. That way, I can always change something in my notes rather then winging it and adding in random features on the go.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.