GreyFox135
-
Allowing HTML tags in the site description in WordPress
HA! found it: echo html_entity_decode(get_bloginfo('description')); Just write that instead of this: bloginfo('description'); Enjoy :)
-
Allowing HTML tags in the site description in WordPress
It's definitely possible, I just have to find it. I'll update if no one knows and I find it.
-
Found an error on your WordPress lynda tutorial
Thanks. I was having a hard time working with offset. It wasn't really working for me. I found this great though! Here is my solution btw:
-
[Solved] CSS3 Transitions bug in Chrome for Mac
haha Yea, I think so. After further play I found that the if you have the anchor link set to display: block, the bug doesn't happen. Also if you place the transition property in a separate stylesheet. Weird right?
-
Header is cut off with mobile devices
Looks like it was just the max width being met in the device...
-
Header is cut off with mobile devices
Here's an image: http://dev.redeyedesigner.com/redv4/images/iPadCutOff.jpg
-
[Solved] Adding a wild card in PHP
I decided to use string compare: This worked like a charm
-
[Solved] Adding a wild card in PHP
Umm, well... I want to check if someone's number starts with 805. Any number after that is irrelevant. It's the area code I'm interested in. I can't have it return false. Maybe something like this? if ($phone == "805"…
-
Display Content Based on IP Address
Thanks man, not exactly what I was looking for, but it's good to know the php side of things. I'm really trying to do this with JS. I'm also trying to do a range of IP addresses. Thanks for your input!
-
[Solved] Background color change on hover
YES! I made it happen. http://dev.redeyedesigner.com/redv3/ Here's an example of what I did: var navBG = $(\"#navigation li\").css(\"background-color\"); var fadeColor = \"#0b93e5\"; $('#navigation …
-
[Solved] Background color change on hover
So I stumped ya'll eh? This is really turning out to be more of a challenge than I thought. I went ahead and used some css3 to get the effect that I want. Doesn't work in FireFox, only works with webkit at the moment. Fail... Still worki…
-
[Solved] Background color change on hover
tried removing the background color from the #navigation li a:hover, but that doesn't work. Once I do that, nothing shows up
-
[Solved] Background color change on hover
Okay, new problem: When I load the page, my 1st mouse hover will not have the fade in effect. It will hover normally. However, on my 2nd attempt fade in works just fine. Check it out: http://dev.redeyedesigner.com/redv3/ Here's my js: $(…
-
[Solved] Background color change on hover
Here's the effect I'm looking for my navigation. I'm currently doing this with css. http://dev.redeyedesigner.com/redv3/ Again, thanks guys!!
-
Flash is breaking my site on FF for PC
AH! I found out what was wrong. I added wmode="transparent" to the embed tag. It works fine now.
-
jQuery opacity help
"Hugo" said:Why not give the descriptions a CSS class that makes them invisible immediately? As far as I know CSS comes before Javascript.. So try using visibility: hidden seemed like a good idea, but visibility didn't work. jQuery c…
-
jQuery opacity help
"von" said:I believe if you specify timing it might fix things. Add ", 0" after you animate selector. $(document).ready(function(){ $('#nav span').animate({ \"opacity\" : 0 }, 0); It tells the animate…
-
[Solved] Problem with FF3 on PC ONLY on PC...
Awesome! Thanks for the help. I really appreciate it. I finally got it look right across the board. Thanks again!
-
[Solved] Problem with FF3 on PC ONLY on PC...
Wow...can't believe I didn't think of that. I failed... Thanks for the help. I did the top: 0; right: 0; but found that I had to give the top a negative value to bump it up with the red rule across the top. This makes it look the way I w…
-
Learning PHP
I can vouch for the Lynda.com PHP lessons. I'm about halfway done with it and it's EPIC. I pay for the premium subscription, but you can get away paying $25 for a month's worth of service. Cram it in dude!
-
The Simple Contact form
Ah! I knew I had forgotten something. Ikthius to the rescue once again. Thank man, I really appreciate your help. I owe you!
-
Multiple CSS Files for one website.
Thanks for your replies guys! I really appreciate all your input. You guys are awesome!
-
Multiple CSS Files for one website.
1-3 is common then? I was just wondering. I'm new so I was just making styles for all my pages. Thanks for the your input!
-
PHP Contact Form
Yea, I asked and she has it all set up with her personal account. She's a local artist who just wants something up and running. Guess it doesn't bother her much. What ever the client wants, right? ;) I'm really happy with the contact…
-
PHP Contact Form
IK, Thanks dude! You're the best. Your post really helped out and it seems like the spam has stopped. Yes, I have @sbcglobal.net on there because I built the site for my mother in law and she wanted to use her regular e-mail and not a @faul…
-
PHP Contact Form
Dude! You are the best!! I'm starting to understand the way this works. I'm not PHP literate yet, but your help has been an awesome resource! I did encounter something odd with the code you provided though and I've been trying to fix…
-
PHP Contact Form
Thanks for the response guys! I'm still having trouble. Okay, I'm a rookie here. Sry... Here's the site I'm working on. http://www.faulknerventures.com/contact Here is the PHP: I'm so sorry if I'm really missing so…
-
Contact form help...
On an other note: If I wanted to have the form e-mail 2 different address could I just add the second address like this: $EmailTo = \"email1@domain.com\"; \"email2@domain.com\"; ?? If not, any suggestions?
-
Contact form help...
@ikthius, Awesome!! Thank you very much. This has made my day. I know about the field errors; thanks for catching that :D PHP is quite impressive.