noahgelman
-
Full Page Background
Lol, yeah, I updated the file path, I switch it to a filler before posting here. I am using IE8 via IE9. Do you think that might be the issue?
-
Full Page Background
@rajiv, thanks, but this only accounts for the width when scaling, it doesnt account for the height as well.
-
Full Page Background
From what I read you can add a filter that will allow the image to scale right in IE8 -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image-file-path.jpg', sizingMethod='scale')"; filter:progid:DXIma…
-
WP: Can't attach Featured Image
Definitely some kind of ajax error but I have no idea what I need to do to fix it
-
WP: Can't attach Featured Image
Chrome is giving me this. I'm not sure how to interpret it: POST *website*/wp-admin/admin-ajax.php load-scripts.php:4 f.support.ajax.f.ajaxTransport.send load-scripts.php:4 f.extend.ajax load-scripts.php:4 f.each.f.(anonymous function) load-sc…
-
Wordpress: How do you make a navigation menu with select and options?
Was able to get it $(document).ready(function() { $('#mobile-navigation option a').each(function() { var newValue = $(this).attr('href'); $(this).parent().attr('value', newValue); }); $(…
-
Wordpress: How do you make a navigation menu with select and options?
Do I have to do anything special to get it to link? Do I just wrap the inside of the options with an anchor tag? How do I get to current page to be the default selection of the select box? I probably should have asked these at the beginning
-
CSS Centering Images help
How about this? No js needed. Moves re-centers dynamically when re-sized. http://jsfiddle.net/joshnh/Ff5hm/
-
jquery - get prev and next href.
$('#menu a').click(function(){ var theLink = $(this).parent().siblings().children('a').attr('href'); // do whatever you want with the theLink variable });
-
Targeting certain words dynamically with CSS?
Don't use js, use php to wrap the text in a span with a class. Don't rely on js for layout related parts of your site.
-
share buttons and wordpress
Yes sir, most certainly is possible although I'm not sure if it's compatible with the Share This link you shared. It looks like their code doesn't have a spot for the URL. Their code grabs it for you. However, if you do find a code w…
-
Favorite Social Icons that are Free for Commercial Use?
www.iconfinder.com is also really good. Tons of icons free for commercial use.
-
Can't remove space between images
Another answer which can work, the gap is caused by line-height. Set the line-height on the link to 0 and the gap disapears.
-
Is it possible to swap order of two words in text?
Of course the downside of this is several things. Backwards compatibility and text highlighting.
-
Is it possible to swap order of two words in text?
Ah, I see. That's about as round-a-bout as you can get without using php or js
-
Is it possible to swap order of two words in text?
Not possible with css. Depending on how you're delivering the content to the page, you can any of a couple php string modifiers.
-
OCD is kicking in, cant decide the colors to use for this nav menu, want to help?
I liked the green :(
-
best free hotel booking software?
This is not free. Those websites use software and DB from a company and probably pay residuals to them. Unless you can get the money to pay for it you're out of luck. Building it yourself wouldn't be possible without a lot of start up money
-
PHP question.
Correct, "||" means "OR" when used in a conditional statement. Fun Fact: in karlpcrowly's example (and in all instances where "||" is used), if a condition ends up as TRUE, it will ignore and not solve all followi…
-
Website Critique Pretty Please!
Looks good overall. There is kind of some nit picky stuff. The links with the gray box hover, there should be some left padding. The text goes straight to the edge. The Sidebar on the About and Contact has a "Navigation" section. The sec…
-
Wrap around specific word with jQuery
How is the date being generated?
-
banner won't stretch when window sized small
Hello good sir! The Problem: width:100% does not work because it refers to the current width of the window, and because your content is wider then the width of the window (thus needing the scrollbar) it stops when you scroll over. Fun Facts!: If y…
-
[CSS] Vertical centering image
@joshuanhibbert, I didn't mean to say your javascript was inefficient, I just meant using javascript in this case if inefficient. @karlpcrowley, yeah, that's a more reduced solution than mine. I assumed he would have more stuff on the pag…
-
Very exotic scroller
The buttons on the side are just links and uses js to get the related div's document offset and scrolls to that position.
-
[CSS] Vertical centering image
@joshuanhibbert, that's rather inefficient. No, jquery or javascript. Dynamically vertically centers. Always aim for no js.
-
Remove the #string from the end of a url
Thanks for the help Chris. It took me a little bit to understand how it's all supposed to fit in but I got it. That did the trick.
-
What kind of Degree did you get in Web Dev?
Getting a degree isn't worth all that much. Say a Bachelors for instance. Anything you learn during the first 2 years is outdated. Anything you learn in the 3rd year is about to be outdated. And everything you learned in the 4th year is current…