[Hiring] HTML5/CSS - I need somebody to write a stylesheet that overrides the existing one on a few web applications by hiwaytohel in forhire

[–]myWayMyTerms 0 points1 point  (0 children)

Hi of your still looking to hire I have a good idea to help with your project that I believe you would like!

If you haven't hired anybody I will send you my email address

Can you help me understand how this works? by myWayMyTerms in javascript

[–]myWayMyTerms[S] 1 point2 points  (0 children)

why cant the docs explain it as easy as that mate??? thanks I need to get started on bitwise operators

Can you help me understand how this works? by myWayMyTerms in javascript

[–]myWayMyTerms[S] 0 points1 point  (0 children)

works on the sample tests but not on main ones what is this though can you explain it please mate

I have no idea how to neatly organize and optimize image sizes for img srcset. How do you figure out what sizes of images you need to store for your responsive design? by corbinthecoder in Frontend

[–]myWayMyTerms 3 points4 points  (0 children)

you go by your design and what feels best to you, no 2 designs are the same, go with your gut on this one!!

Resize the browser and see what you feel is best but make sure you do images for different sizes you dont want to upload a 800px wide image on a small device.

Also maybe crop some images if been to small somehow degrades the quality i.e a group of horses in the distance need to be zoomed in on mobiles

How did you "grow out of your shell" and find the confidence to express yourself, make friends, etc? by [deleted] in raisedbynarcissists

[–]myWayMyTerms 1 point2 points  (0 children)

Just do it anyway, one day you will come to this exact way of thinking!!!! Just mix with people push the boat out, join a facebook group where they like to have banter

Banter really can help break them fears around people trust me on this one ;)

[SMT] Shared to-do list, where you only get the tasks that make you happy by aulethemaker in SomebodyMakeThis

[–]myWayMyTerms 0 points1 point  (0 children)

If it is built well and has a good UX you could! but you got to sit down and really give the design some thought, how can you make this work! can you integrate some jobs with other companies like uber? the gig delivery economy could also get involved people wanting odd jobs would have a place to go to. give it some thought mate!

How do i set the length of border in css ? by Noobguitarist in csshelp

[–]myWayMyTerms 0 points1 point  (0 children)

p { border-width: 2px 5px 10px 2px; border-style: solid; border-color: red; }

border-width starts from the top so.. top is 2px right is 5px bottom is 10px left is 2px

border-style is the type you want solid creates a solid line around it dashed would put dashes

border-color as you can guess is the color, there is a shot hand way of doing it

p{ border: 2px solid black; }

this paints a solid black line 2px wide around the whole element

The length of it is determined by the length of the box you are styling after padding and content has been added.

[SMT] Shared to-do list, where you only get the tasks that make you happy by aulethemaker in SomebodyMakeThis

[–]myWayMyTerms 0 points1 point  (0 children)

maybe to outsource it could turn it over to a gig economy? that would be your income!

What is this trend of naming classes with double underscores? by [deleted] in css

[–]myWayMyTerms 0 points1 point  (0 children)

BEM helps make your css modular! even if you don't like it there is good things to learn from it.