JohnMotylJr
-
Still waiting for replies. Pls
If you want to create mobile apps, then either learn objective c (apple products) or java (android devices). There are frameworks out there for handling both sides of the fence like phonegap in which you only need html, css, and javascript knowledge…
-
if i follow this wordpress tutorial will it work?
@teknofu, bro, i too have used underscores and it is pretty awesome. The html5 boilerplate make a html5 wordpress theme as well, but i have had a good amount of success with that. I say go for it! The more you mess around with stuff the more you lea…
-
iframe work on android browser
how are you trying to implement it? Standard html/css?
-
Making a template cross browser
CSS3 sometimes requires what is called 'Vendor Prefixes', if you google that you can read a shload of documentation. Search this site alone and you can read some relevant stuff. Basically, you add vendor prefixes such as -webkit- // Safa…
-
table vs div
I suggest you got to codepen.io and make a use case of the troubles you are having. Once you run into a problem save the pen and post it back here so we can see exactly what kinda of problems you are having. Golden rule, divs are block elements that…
-
Centre a logo in the middle of a Menu (4 menu items) and keep it responsive?
is your logo an image? if so you can just set the background property to: background:url('image.png') no-repeat top center;
-
HTML 5 audio problems
Since you are streaming you doing this stuff back-end?
-
Please give your honest opinion about my new website
I can't web design no matter how *gorgeous* my websites look (I know you're staring with awe at this site), but I am... I can't web design??? Like everyone is saying, its a little crowded and and elements need some sort of distinc…
-
HTML 5 audio problems
Yea i believe firefox ONLY supports ogg file format. Check this out: http://slides.html5rocks.com/#video-audio
-
HTML 5 audio problems
you need to make sure you include both types of media (mp3 and ogg). I'd suggest using a plugin or something that is already designed to handle stuff like that. If you need to convert audio files, http://media.io/ is pretty good with that.
-
Minor help with HTML
Ahhh, this makes sense... Thanks @TheDoc.. @colette, If you want to display code, it is suggested that you use and tags. Also, try using html entities as well. Im sure there is a reference on this site however, the page i commonly reference is ht…
-
Minor help with HTML
@colette, are you talking about displaying code? That is the only thing off the top of my head that would render. If that is the case try using character entities such as < ; and > ; Why dont you make a CodePen so we know what you are t…
-
How could i do this in photoshop?
@alexmccabe & @iknowdavehouse, thanks guys for the helpful tips.. Totally gonna give this a try now.. Thanks again!
-
How could i do this in photoshop?
@alexmccabe So maybe not the task for an absolute beginner with photoshop lol?
-
Help a js noob. How do I get this function to call immediately
Yeah, something funky with bootstrap.. script works just fine: http://codepen.io/johnmotyljr/pen/gIpcB
-
JS or Jquery Image Slider
Check out jQuery4u.com. They have a shload of jquery plugins, super light ones as well. It would take more time getting a css only cross browser sliders with only css then it would implementing a js slider.
-
Trouble getting the drop down menu items to align under the parent menu-item
All i changed was this: ul.dropdown ul { width: 220px; visibility: hidden; position: absolute; left: 0; padding: 0; } http://jsfiddle.net/john_motyl/EQKaQ/1/
-
Do I need a contract to sell my web design services?
This is the kind of stuff I rarely see on dev sites, deff worth looking at for everyone who does development. Thanks again @chrisburton and @CrocoDillon for sharing and @mitso for sparking this convo.. I totally bookmarked a couple things after this…
-
contact form not working......
@adnan4ali, first off you have two links to jQuery in your head. Second, i would move all scripts to the bottom of your body. Third i would suggest using ajax to process the form. Fourth, incorporate client side validation. Fifth, add ID's to y…
-
Portfolio design, would love your feedback
Designing for myself has been interesting, but hard... You know what they say, "The hardest client you can ever have is yourself". To be honest, it's all about your employer. Most experience i have had (in the programming world) they…
-
horizontal web page
@mdrd88, it's ok! we all make these mistakes from time to time.. http://codepen.io/johnmotyljr/pen/dnwko I would also see about finding the source because dropbox is not a reliable cdn for hosting code. EDIT: You can download it from the sou…
-
Flip image horizontally with selectmenu.
Is that language vb.net?? Only reason i ask is the 'Then', anywho.... What are you trying to accomplish with two ID's? I think you misunderstood what toggleClass does, and from what i see in your ASP is you are trying to switch the ID…
-
Do I need a contract to sell my web design services?
@chrisburton, hey nice video, thanks for sharing...
-
Wordpress install going funky! Dashboard looks horrible!
@seansean11, Hey man, now im not a huge wordpress guy, but ive installed it a few times before the latest update and never had any problems, so i really cant confirm what the major problem is. I changed the htaccess file live and on XAMPP (windows 7…
-
Wordpress install going funky! Dashboard looks horrible!
@notfilc, well.. I took out EVERYTHING in my .htaccess except RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] and go figure, it wo…
-
Wordpress install going funky! Dashboard looks horrible!
@chrisburton, Hey, i just noticed my http responses and im getting these: Link: http://puu.sh/2niJb I would imagine this is not wordpress?
-
Wordpress install going funky! Dashboard looks horrible!
@chrisburton, haha yeah i know right! It's funny because i just busted out that screen cast you made to make sure i was g2g.. EDIT: So I used a previous backup and still same thing, except this time there is some functionality when i click on …
-
Wordpress install going funky! Dashboard looks horrible!
Yeah, well i set my console to display all network traffic, etc.. Everything is loading but its not just the css (or styling) when i click on a link (i.e. Themes) it will load /wp-admin/themes.php but there is no functionality. My backup is the vers…
-
Anyone having CodePen troubles? {{ JS }}
@chriscoyier, for sure. Since that post i have managed to not have any problems but will deff redirect inquiries that way.
-
chenge img src using Jquery before it render the old
Is there any dynamic reason to be replacing the images? Trying to manipulate an element like that is very tricky (if it can even be really done). What are you trying to accomplish, there may be a better alternative. You could always do a ghetto tri…