cizmic
-
PHP Inside tags?
Please give us a link to the page or make a pen. We don't know what's the problem until we see the code. This may sound stupid, but have you checked to make sure that your file extensions are .php and not .html?
-
Struggling with JAVA!
Sorry, don't think you'll get much help here, this is a JavaScript forum. You can try this JAVA forum -> javaprogrammingforums.com
-
Wordpress Title Help
@kgscott Thanks. You guys are way better than the WordPress community ;)
-
Website Design / Feedback Please
@mwdewitt: CRT - old monitors that have a vacuum screen. such colors are really amplified on those things.
-
Jquery Cycle plugin rotating youtube videos and it's not displaying correctly in SAFARI
Safari displays the website correctly on my iMac. (Version 5.0.5)
-
Static Navigation Bar Help
Hey there and welcome to CSS-Tricks! What you're wanting is a fixed position footer. Below is a link to a tutorial for fixed element CSS. CSS - Fixed Positioning Hope this helps.
-
HELLO! TOTALLY NEW...
Hi there! Because the web is changing constantly, here are some few suggestions to make sure your site doesn't have: 1. As theacdes mentioned, don't use a splash page. It serves no purpose, and is bad for SEO. Additionally, it can confus…
-
Website Design / Feedback Please
I would take out the green. Green is the easiest way to cause eye strain on people viewing your site on a CRS.
-
country redirect script
http://css-tricks.com/snippets/php/detect-location-by-ip/ You could set up the rest of the PHP.
-
'DIV' that takes up the height of the browser
Because in browsers, the html tag is considered as a block element.
-
'DIV' that takes up the height of the browser
Try using html, body { height: 100%; } That should fix it.
-
New MAC user !
I use *shudders* Dreamweaver. I just use the code view because it has a lot of neat time-saving features.
-
'DIV' that takes up the height of the browser
Why didn't 100% work? Can you give me the code or result?
-
Vertically centering a TD
What browser and platform are you using? It looks normal on Safari.
-
How to insert jQuery to Dreamweaver CS5
I use Dreamweaver CS5 as well, and to embed jQuery, just put this code in your head or body sections. Change the src attribute to the filepath of your copy of jQuery. Dreamweaver CS5 doesn't natively support jQuery, but it does offer some sc…
-
How to load website Apple style
I would use some script timeouts: setTimeout("functionName();",5000); The first value would be the function, in which you could use jQuery to fade in. The second value is how long the delay is in milliseconds (seconds times 1000). Altern…