noahgelman
-
Customized Paypal Button
Small tweak to tannders code: .paypal-donations {margin: 10px auto 0;}
-
Wordpress Comments area misbehaving
If you had a link, could tell you in a few seconds. Looks like a float issue.
-
PHP Email doesn't work!!!!!!!! HELP PLEASE
what code are you using exactly
-
New website - feedback please!
Overall the site looks really clean. Only a couple minor things. Images should be optimized. If you have access to an image editor (Photoshop, Illustrator, Fireworks, etc), use it to export the image to reduce the file size. If not you can use an o…
-
Sticky footer being destroyed by wordpress admin bar
On the Edit User Page, Uncheck the "Admin bar visible on front end" option. If that still doesnt work, follow this article: http://wp.tutsplus.com/tutorials/how-to-disable-the-admin-bar-in-wordpress-3-3/
-
Center 2 DIVS side by side in wrapper?
@Rugg Yeah, sorry for wrong link. Here below is a much more optimized version. Less CSS. http://codepen.io/anon/pen/oCvxE
-
Center 2 DIVS side by side in wrapper?
Here is a better version of @CodeGraphics code but without the extra html and unnecessary css. You dont need so much code for a simple thing. Simply put, if you have a div, and the elements inside are set to "display:inline-block" then yo…
-
Scrollable body and Right Fixed Column
Chris did an article on this: http://css-tricks.com/scrollfollow-sidebar/
-
Multiple ul's
Make sure your file paths are correct. Sometimes when moving things from one place to another, things get moved around. It sounds like it's not finding your css file.
-
Would anyone be interested in a twice a week live screencast teaching you how to build websites?
@chrisburton double cringe
-
Would anyone be interested in a twice a week live screencast teaching you how to build websites?
Thanks for the feedback guys. I'm taking it all in. I planned to have 30-1hr casts. Time to cover the topic and answer questions. As for the content, It'll be very diverse. @Frantiq, Not just WP. I plan to show a lot of HTML/CSS (basics,…
-
Would anyone be interested in a twice a week live screencast teaching you how to build websites?
@Dami, yes, they would be archived. You could go watch any past videos you want. @Jarolin, yeah, the video library is cool, and lots of great vids. This would just be a different kind of service. Live instead of pre-recorded. You can get questions …
-
Sticky Footer Method
There is more css in the example that you linked to than you have shown above. Do you have a link to the site?
-
How can I grab the Featured Thumbnail attached to the Blog page?
I've figured it out. I get the blog page ID, and then that ID lets me get the proper thumbnail.
-
How can I grab the Featured Thumbnail attached to the Blog page?
@begetolo, I'm NOT trying to get the thumbnail from a POST. I'm trying to get the thumbnail from the current PAGE. @chrisburton, I've tried various get_attachment options and all ended up the same. Any time I try to grab data from th…
-
How can I grab the Featured Thumbnail attached to the Blog page?
I'm not trying to get the thumbnails for each post. I am only trying to get the thumbnail for the current page. On other pages it's easy, you can just use the_post_thumbnail(), but if you use that on the blog page, it just grabs the thumbn…
-
Skew only container, not content
I've done this before a long while back. What I did was Skew the container, than Skew the image inside back the other way. You have to do a little more work after that to get everything aligned but you'll figure it out easily enough.
-
$(this) from within a seperately called function
Yeah, that can definitely happen. It happens to everyone. It'll never stop happening. Don't let these mistakes define you as a developer.
-
How to write a simple HTML code inside PHP echo " ";
Why are you escaping the quotes? You don't need to do that. You only need to do that when the quotes are the same as the surrounding quotes. If your html is inside double quotes, you don't need to escape single quotes.
-
$(this) from within a seperately called function
It's a matter of scope. When you run a function, it can only use the data it's given. If inside "Function A" you want to call "Function B", then "Function B" doesn't automatically get to use all the data …
-
Calling Post data in WP by hovering a certain word
I'll definitely look into it, thanks Chris
-
Calling Post data in WP by hovering a certain word
Ajax certainly a possibility. How's this: I would run the content through a filter to wrap known "keywords" in a span with a class or something, then, ajax in the content of the matching post when a hover of that word is triggered. …
-
Calling Post data in WP by hovering a certain word
Not really, I want the content shown to be database driven. I want to type it's information once and use it anywhere. Also I want to use html inside as well.
-
Vanishing posts on Wordpress page !?
The issue is "elseif ( $page_type == 'blogpage' )" Ignoring the loop, none of the html is showing up. Which mean the $page_type isn't matching. I can see near the top of the loop you use str_replace on the $page_type. Why d…
-
[Solved] $(document).width() giving wrong value on refresh in Chrome
Ooooooh, very good idea. That worked. I'm thinking what happened was the 100% elements was tricking my js to calculating the width before the scrollbars appear. This made me realize the real issue. I had forgot to wrap my js in $(document).r…
-
[Solved] $(document).width() giving wrong value on refresh in Chrome
Not at the current moment. Perhaps is has to do with a couple divs just inside the body with a width of 100%.
-
How do you include more advanced languages into your Web Development? (ie. Python, Java, C++, etc.)
It's not necessarily so I can build stand alone projects on my own. It's so I can be familiar with other peoples code and communicate properly with those who right them when our goals overlap.
-
How do you include more advanced languages into your Web Development? (ie. Python, Java, C++, etc.)
@TheDoc, I'm still learning, but I'd like to broaden my learning by at least being farmiliar with other technologies. @Chandra, I know (even though PHP has some issues). @Senff, I only say that because I can HTML/CSS pretty much any site…
-
QR Code
A "QR Code" isn't actually "Code". It's just an image. A QR Code reader can read that image. You don't have to do any work.