paintba11er89
-
text formatting in textbox
WYSIWYG editor. That is the general type of editor.
-
Getting around Chrome font display on PC
Whether you're talking about poor antialiasing on Chrome, or the font being too thin on Chrome, there is definitely a solution: @media screen and (-webkit-min-device-pixel-ratio:0) {} will single out webkit driven browsers (Chrome and Safari).…
-
Sidebar Menu Design
Do you mean sub-menus? It displays them as slightly indented (links 6 through 10).
-
CSS Menu Slider for Mobile Devices - Collaboration
I've updated it a little bit. Little more cosmetically pleasing, and I added support for sub-menus. Still looking for some collaboration on this.
-
Sidebar Menu Design
This may be something you'd be interested in: Github. Example of it live is here: JSfiddle.
-
CSS Menu Slider for Mobile Devices - Collaboration
@Koopa absolutely! IE is the bane of every web developer, but that's what Modernizr is for. If the browser doesn't support transitions, have it load some JS as a fallback to make it pretty.
-
CSS Menu Slider for Mobile Devices - Collaboration
@bkbillma I just got a chance to look at the site under 400px on both a laptop and my phone. I see what you've done, but there are obvious drawbacks. Desktop: Menu is only visible when the mouse button is held down, as soon as it's rel…
-
CSS Menu Slider for Mobile Devices - Collaboration
@ChrisP those are the same issues I've been struggling with for awhile. Fixed positioning and overflowing out of the window will definitely create some problems on different browsers, and will cause you to be sent right back to the top when …
-
CSS Menu Slider for Mobile Devices - Collaboration
@bkbillma I thought about using :hover/:target/:active to make this work, but I forget why I ultimately decided to go a different direction. Obviously, I don't like the idea of building a complete navigational structure off of a hack, but CSS …
-
CSS Menu Slider for Mobile Devices - Collaboration
@ChrisP, that's slick! I'll implement that into my version on Github. I'm still trying to find a way to be able to make the #page panel unscrollable when the navigation menu is out. Thoughts?
-
Fallback font choice based on different resolution in Chrome for Android
@chrisburton, no. That is caused by the same issue. Look at the header that says "Grand Opening!" and "January 2013". Notice how in the landscape picture, it's a nice, script font. Then in the portrait picture, it's…
-
Checkbox Hack on Mobile Webkit
Thanks @DesjardinsM! Definitely not best-coding practice, but interesting enough for those who want CSS-only solutions for storing state. Good to know there is a "legitimate" workaround.
-
Self-Processing PHP Form
@traq thanks for your input! I'm changing things up right now, and I thought of a way to handle things thanks to what you said. I'll let you know when it's committed and pushed. I haven't got a chance to look at your gist yet,…
-
Self-Processing PHP Form
Okay, so I've created a self-processing PHP form that builds itself dynamically based on a configuration array. $inputFields = array( // Which fields do you want the contact form to include? // FORMAT: array(referenceKey (no spac…
-
Self-Processing PHP Form
@traq check out where I'm at now on it, I think you'll be able to help out. I've laid the framework for automated form building, but not validation (because validation is inherently different depending on the type of field) - trying …
-
Self-Processing PHP Form
Great point @traq. This is definitely still a work in progress, and is in active development. I did some cleaning up that I pushed to origin right after you forked actually. I'll make it a point to split up the two. I'm trying to walk …
-
Responsive Web Design / Boilerplates
If the site is small enough to get away without using a grid, you could just use a boilerplate and design the responsiveness yourself.. You cut down on load time that way.
-
How Do I Stop SCSS (SASS) from Evaluating a Calculation?
Interpolation! That's right! Yeah, that works. Thanks!
-
How Do I Stop SCSS (SASS) from Evaluating a Calculation?
Right, the original code is not MEANT to do division. The syntax for that is:font: font-size/line-height fontname;My original question asks how do I STOP SCSS from evaluating a mathematical formula and turning it into a calculation, which it is not…
-
CSS Menu Slider for Mobile Devices - Collaboration
Current version. Special thanks to @Vermaas for forking the repository and helping out! Still a few bugs, but we're working on making this stable across all mobile browsers (harder than it sounds). If you'd like to help out, repository …
-
Email Confirmation
I'm actually out of duct-tape for the moment.. Maybe I'll just use some white out.
-
Flexible rollover image links
It seems like it wouldn't be an issue.. Read this.
-
Personal Portfolio - Critiques please.....
The word "Hire" was a little hard for me to read.
-
Fixed Navigation Menu on Mobile
Works for me on Android's default browser, just doesn't scroll smoothly.
-
Substituting header for div tags
And don't forget to apply any styles you had for tags to the new header tag.
-
Help with css navbar.
I'm sure you could apply that look to the image within photoshop, but that would make your image sizes larger, make your page load slower, and lock you into a certain design. There is no positive side to doing it that way. I'd stick with…
-
How to get the links to move with image.
Don't forget to set the anchor tags as display: block; and give them the same kind of properties as the div (if you want it to span the entire div, etc.).
-
Placing image behind a div w/ background pattern
Alright. Sorry. Fixed it. My apologies. Z-indecies only work on elements that are not positioned staticly (default).So the content div automatically has a z-index of 0, and you can't change it until you position it relatively.In order to no…
-
Placing image behind a div w/ background pattern
Can you give a screenshot of what is happening?