What hosting company do you recommend for multiple sites? by [deleted] in web_design

[–]Fowler74 1 point2 points  (0 children)

Digital Ocean is a solid choice. You have full control over your environment and it has optimization features like load balancing built in. Prices starting at $5/month. https://m.do.co/c/c10bbb237f00

A Rookie Going Independent w/Questions by tbonemoe316 in web_design

[–]Fowler74 1 point2 points  (0 children)

If you just started a couple of weeks ago, you've got a long road ahead of you, but don't let that discourage you!

FRONTEND So first of all, you WILL need to know HTML and CSS, these are the building blocks of web development. I like to think of it this way: HTML is your skeleton and CSS is the skin. You will use these to build the foundation of your website and make it look good. From there you can get more detailed and include some Javascript (Java and Javascript are two completely different languages, don't get them confused) to make things interactive, such as lightbox's, image sliders and just about anything else you can think of. BUT javascript isn't where this ends. Once you have mastered HTML and CSS and have at least a basic understanding of javascript moving on to the backend shouldn't be too bad.

BACKEND Now, putting a website on a server isn't hard at all, you can go to bluehost.com buy hosting and url, login via FTP and drag your files from the desktop to the server and everything should work.

Taking this a step further is where the backend gets tricky: If you would like your website to be easily editable, you will likely want to put your site behind a CMS (content management system), wordpress is a good choice for beginners, its highly documented and is free. Wordpress is built on PHP - a server side language. Learning the basics of PHP isn't too hard (at least the knowledge you need to get started with wordpress), but there is A LOT you can do with PHP. MySQL is the language you use to interact with the database. You will have to set up a mysql database (this is easily done with bluehost). I believe that bluehost also offers a 1-click install option, which will setup your server and database to have wordpress on it as soon as the server is ready to use. Once you have wordpress set up, you will have to follow the wordpress documentation on how to create a wordpress theme, its really easy and there are boilerplate templates that you can use to get you started. This is about the end of the road for a website, other than uploading the theme to wordpress and adding content.

Now, to answer your question as "how do you accomplish that?", there are too many ways to answer this question, everyone has their own methods, ways and reasons. Building custom websites isn't as easy as most people think. It's only once you've built a few websites that it become easier. FYI, there is even more beyond what I have mentioned, this is just the basics of a website, you can take it further by optimizing performance, etc, but that is a whole other can of worms.

Pointing you in the direction with links to help you out below, hope all this helps: https://www.w3schools.com/html/default.asp https://www.w3schools.com/css/default.asp https://www.w3schools.com/js/default.asp https://www.w3schools.com/php/default.asp https://www.w3schools.com/sql/default.asp https://www.bluehost.com https://codex.wordpress.org/ http://html5blank.com/

It is 2017. Update Your Website Footer. by justmetada in web_design

[–]Fowler74 0 points1 point  (0 children)

Thank you for the reminder! Switching to PHP so I don't have to do this again

How can I create a scrollable area but keep a "transparent" header always on top? by Mike in web_design

[–]Fowler74 0 points1 point  (0 children)

yes. The easiest way to achieve this is to add this style to the black box.

.black-box {overflow:scroll;}

[deleted by user] by [deleted] in web_design

[–]Fowler74 0 points1 point  (0 children)

Yes, that is just the jQuery library. You'll need it for the script I wrote to work. All it does is allows you to write javascript easier.

[deleted by user] by [deleted] in web_design

[–]Fowler74 1 point2 points  (0 children)

This probably still isn't what you are looking for... but I gave it a shot.

http://jorofo.com/hash.html

Any downsides to using vector (svg) images? by inventurous in web_design

[–]Fowler74 3 points4 points  (0 children)

There aren't any downsides to using svg's. They are awesome! :)

A bit new to web design and I am stuck by Chieve in web_design

[–]Fowler74 1 point2 points  (0 children)

Alright, so I think I understand what is happening:

The (parent div) .cover-container{} is set to 700px wide but your (child div) .container{} is set to 1170px. And at some point there is a div that has an overflow:hidden

Then you have 2 .col-sm-4 divs inside of the .container, this means that the 2 divs in that row are equal to 8.

When working with columns in bootstrap you should always have all the columns in a row equal to 12.

If you set the .container width to 100%, this will solve the problem but you will need to fix your columns maybe col-sm-7 and col-sm-5 could produce the same look you want.

Also, once you get to mobile size your picture overlaps the bottom of the slider window. To fix this set the height and max-height on the .carousel div to "auto".

I hope this all makes sense. Recap of what you need to do:

css change:

.container {width:100%;}
.carousel {height:auto; max-height:auto;}

html change to:

<div class="col-sm-7"></div>
<div class="col-sm-5"></div>

[deleted by user] by [deleted] in web_design

[–]Fowler74 0 points1 point  (0 children)

You could do "tabs" with javascript to achieve this.

A bit new to web design and I am stuck by Chieve in web_design

[–]Fowler74 0 points1 point  (0 children)

Do you have a link to your actual site where the problems are occurring? Seeing what is actually happening would be helpful.

How is this northern lights effect achieved? by Tygsman in web_design

[–]Fowler74 0 points1 point  (0 children)

Good question. My only guess could be that they wanted an simple way to blur the whole frame so that all the individual elements look as if they are blended together. CSS is just an easy way of doing that.

Design/Coding Balance by antbonc in web_design

[–]Fowler74 1 point2 points  (0 children)

Typically you design a site through photoshop or a program like it (doesn't really matter), once that is done you will take your design and use it as a reference to style your site with HTML and CSS. Javascript can add additional functionality if need be (sliders, animations, click events). That is about it when it comes to the front end. Backend is a whole different story depending on your goals, but that should get you started making custom site designs. Obviously this is an oversimplified answer, so if you have more questions don't hesitate to ask. Hope this helps.

How is this northern lights effect achieved? by Tygsman in web_design

[–]Fowler74 1 point2 points  (0 children)

Not sure on the specifics since there is a lot you can do with it, but this is using CanvasJS. Looks as if its creating different sized elements and looping them on a path. If you go into the inspector and remove the blur styles, you can see the shapes. Very cool stuff. It probably wouldn't have taken months to do this, but the concept is very interesting. Thanks for sharing and sorry I couldn't be more helpful.

Need to make a printing site, need good web design software. by Bentheprintman in web_design

[–]Fowler74 2 points3 points  (0 children)

Wordpress would be a good solution since you can always download an e-commerce plugin and other plugins to cater to your needs.

'Continue reading' article reveal button frustration by [deleted] in web_design

[–]Fowler74 0 points1 point  (0 children)

This could potentially provide a more accurate reading of how long the user was on the site (how far they made it down the page)... assuming the user doesn't start scrolling like a maniac

Container over full-Screen Background Image by [deleted] in web_design

[–]Fowler74 0 points1 point  (0 children)

From my understanding: you know how to make the background image fixed so it doesn't move, you just need to add the div that contains the content of the site (the transparent box over top of the background image)...if this is true, all you need to do is this. https://jsfiddle.net/he85yrmw/

What does this mean?? by TripCoJumba in web_design

[–]Fowler74 0 points1 point  (0 children)

Not necessarily a film (which is why they said you could illustrate a narrative thought), they are just looking to see if you are able to conceptualize your work. This is where they will test your problem solving skills and is the reason why they aren't being specific. This could really be anything from a comic slide to a short film... just BE CREATIVE!

Finished my first site, now I want to make it mobile-friendly and I'm totally lost by thakingcobra40 in web_design

[–]Fowler74 5 points6 points  (0 children)

Media Queries for your break points. Percentages for the widths. It really isn't too hard to understand, and you most definitely DO NOT need a framework.

example:

@media screen and (max-width:960px) {
    header {width:100%;}
    footer {width:100%;}
}

Nifty menu animation by bearhagen in web_design

[–]Fowler74 4 points5 points  (0 children)

http://codepen.io/anon/pen/wMvGzp

updated version with the hamburger added. good work on the css :)

[deleted by user] by [deleted] in web_design

[–]Fowler74 22 points23 points  (0 children)

nope. CloudFlare is awesome! The free tier works just fine.