koeksGHT
Dealer
- Joined
- Aug 5, 2011
- Messages
- 11,857
Haters gonna hate, Facebook just took it and developed their own version
In what way does it freak you out? It's not working yet (just saying).
The icons just aren't sitting properly in the rounded blue element. See image, I fixed the right one:
View attachment 368489
Don't mean to be nitpicky, but things like this just stick out to me like a sore thumb. It's a bit of a hassle, I'd spend hours fixing
small things like this which is quite frustrating and generally a waste of time for not much gain.
latest versions of chrome, FireFox Developer Edition, Edge, and IE 11
So every major browser
If that's the case, please visit our site in a very old outdated browser, please. :crylaugh:
We'll fix, thanks.
is it just me or does bootstrap make web design too easy:wtf:
No, it inspires you to be creative or just be average.
It is very hard to be proficient in both the front and backend. As mainly a backend dev, no one cares if I went and manually designed everything. They just want it to look pretty and be responsive, the logic behind the scenes is what counts.
The reason why all bootstrap sites look the same is because almost all of them use the free themes they find on google. Look at Wordpress. Almost all the free themes look the same.
You most certainly don't need to know JQuery to use Boostrap.
Yep, 100% agreed but if a company just wants some form of web presence to show contact numbers and some basic stuff, why not the freebies. "Ouma's homemade Jam" doesn't need a R5k website but needs to have the same feel.
I am busy with a project where I initially coded all responsiveness CSS from scratch. It worked mostly but I don't have 20 devices to test it on. Decided after too many hours of "fixing" I re-coded the frontend into Bootstrap, haven't looked back.
Customized it to look like the original design but now works seamlessly across devices.
Bootstrap makes development easy.
Web design and web development are two very different things. Using bootstrap doesn't make you a designer, and neither does it make you a developer.
Bootstrap isn't going to make your website look beautiful, that's not it's purpose. It's purpose is to allow you to focus on development and functionality while providing you with easy to use classes so that you don't have to worry about screen sizes and responsiveness and browser quirks etc. It's implementation of grids, LESS and mixins make development efficient, and straightforward.
I am busy with a project where I initially coded all responsiveness CSS from scratch. It worked mostly but I don't have 20 devices to test it on.
I really wish more people would read and comprehend this.
I'm sincerly curious to know how you structured your breakpoints?
Did you create a breakpoint for each device?
or did you use a fluid method?
I'm unsure why you need 20 devices to test, or is it to test the browser engine?
Started by ditching the mobile first idea cause that's literally the easiest part of making a website, image text, image text... scroll scroll scroll
I have 2 mobile devices, a Mac and a Windows machine (dragging chrome to test resizing) and basically tested until it worked correctly using mostly breakpoints but also a bit of the fluid thingy (the ?ver=1 is if you ever get that caching issue just change the ver number and it loads the new stylesheet).
<link rel='stylesheet' media='screen and (min-width:981px) and (max-width: 1030px)' href='css/style-mobile-large.css?ver=1' />
<link rel='stylesheet' media='screen and (min-width:790px) and (max-width: 980px)' href='css/style-mobile.css?ver=1' />
<link rel='stylesheet' media='screen and (min-width:490px) and (max-width: 789px)' href='css/style-mobile-medium.css?ver=1' />
<link rel='stylesheet' media='screen and (min-width:1px) and max-width: 489px)' href='css/style-mobile-small.css?ver=1' />
I initially had a PHP library to decide what to use where but that caused huge nightmares in updating things.
A stylesheet for every breakpoint? Man, that sounds like maintenance.
Started by ditching the mobile first idea cause that's literally the easiest part of making a website, image text, image text... scroll scroll scroll
I have 2 mobile devices, a Mac and a Windows machine (dragging chrome to test resizing) and basically tested until it worked correctly using mostly breakpoints but also a bit of the fluid thingy (the ?ver=1 is if you ever get that caching issue just change the ver number and it loads the new stylesheet).
<link rel='stylesheet' media='screen and (min-width:981px) and (max-width: 1030px)' href='css/style-mobile-large.css?ver=1' />
<link rel='stylesheet' media='screen and (min-width:790px) and (max-width: 980px)' href='css/style-mobile.css?ver=1' />
<link rel='stylesheet' media='screen and (min-width:490px) and (max-width: 789px)' href='css/style-mobile-medium.css?ver=1' />
<link rel='stylesheet' media='screen and (min-width:1px) and max-width: 489px)' href='css/style-mobile-small.css?ver=1' />
I initially had a PHP library to decide what to use where but that caused huge nightmares in updating things.
The stylesheets are tiny max 10 classes per sheet.
It's needed so that viewing that viewing on a computer or tablet with a decent resolution doesn't feel like just a bigger version of mobile.
Mobile first is something that I feel was invented by dev houses so they don't need to do more work and can roll out more sites that all look the same.
The stylesheets are tiny max 10 classes per sheet.
It's needed so that viewing that viewing on a computer or tablet with a decent resolution doesn't feel like just a bigger version of mobile.
Mobile first is something that I feel was invented by dev houses so they don't need to do more work and can roll out more sites that all look the same.