kgscott284
-
hide submenu onload
hmmm, that is some heavy javascript there, WAY more work than it needs to be... but there is a function available you can call: leftnavMenu.prototype.collapseAll = function() { for (var i = 0; i < this.submenus.length; i++) if (this…
-
Why wont my site work in ie :(
You can hyperlink on this site bud...lol, it isn't youtube ;) Have you made sure to set a z-index for the elements that are overlapping the logo?
-
need some help to improve this website
It's clean, but there could be a little more feedback for the user in regards to interactivity...also, your navigation isn't that prominent, a bit of an accessibility issue there....One of my biggest pet peeves are navs that aren't e…
-
Delay a complex moseover
Honestly, it would be much more beneficial to you to go to http://codepen.io and recreate what you have thus far so we can figure out exactly what you mean...at the very least, pointing us to a live version would help incredibly.
-
jquery window resize fires only once
Well, you are only checking if the window size is less than 800, you need to also check for if it is greater. Here is a cleaner solution: jQuery(document).ready(function($) { if(window.innerWidth
-
Question about spiders.
Python is incredibly easy, you will find some similarities between Python and Javascript... Go here to start: http://www.codecademy.com/ they have fantastic courses that are free and in my book quite entertaining...
-
How to center elements in DIVs (four separate DIVs)?
Add: text-align: center; to the parent div...obviously, that will center everything within, so make sure you wrap the other contents and set text-align: left;
-
Centered Drop Down Menu Help
Do you have a link to your page? It would be useful to check the code that is actually breaking...
-
Question about spiders.
Probably a combination of Python, Java, C/C++ Im almost 90% sure they use python and java...and 10% thinks they run a high end C app for some additional functionality
-
CSS Color Combination Suggestions Needed
@HugoGiraudel Those top two are incredible...I have used kuler for a while but the other two...wow! great share!
-
ie8 double margin bug (padding or inline did not fix)
No you did not...It was clear of any margin/float combinations....Glad you got it working!
-
Sublime Text 2, more awesomeness
Don't forget you can use native TextMate bundles...some of the solutions for TextMate are much better than the sublime text counter parts...
-
IE issues with a site
inline-block causes issues in IE8 and lower, basically because inline-block is better suited for turning using properties of a block element on an inline element, rather than the other way around...here is a fallback to fix your navigation issue (fo…
-
ie8 double margin bug (padding or inline did not fix)
The solutions didn't work because I don't believe you are dealing with the double margin bug...the double margin bug doubles the margin of floated elements with margin to the same side of the float...e.g: .element { float: left; ma…
-
css links with transparent text. Hover change to 100% doesn't work.
It's because the anchor tag is nested within the ul, therefore, it inherits the opacity, regardless... you need to move the opacity from the "#nava ul" selector to the "#nava ul li" selector, then you can set the opacity to…
-
The news said no to IE5.5 - 9. Is this true?
It only takes about 3-5 minutes to gain complete control of a users box through various IE exploits...I have done it to mess with my friends using the metasploit framework...
-
3 colum fluid layout
try the same design, but add this: * { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
-
Wordpress admin
Yea, you have been hacked. add this line into your functions.php file right after the opening ?php tag, make sure "your_new_password_here" is actually the password you want to use, make sure it is not the same as before else, it could be …
-
support with layout scripting...
Oh ok, I misunderstood...you will need to wrap the content and the boxes in a parent div and set the width large enough to accommodate both...
-
support with layout scripting...
Well first off, on your actual style sheet, you are missing a closing brace: #extra { background-image: url(images/body_bg_intres.png); width: 240px; height: 255px; float: right; margin: 250px 0px 0px 0px; } /* Your code is missing this…
-
CSS Media Query
XD hahahahahahaha, Niiiiice. lmgtfy NEVER gets old. Quite honestly (this isn't a joke), I think this is the only link you will ever need Media Queries (Search Query)
-
Hello my name is....
XD ahahahahahahahahaha i tried to warn you! I promise that is not how i actually code, I would have been fired a long time ago!
-
How to add an external CSS file to a page with Javascript
you could use the "append()" function in jquery to add it to the element... eg: $('button#addCss').on('click', function() { var uri = $('input#cssUri').val(); $('head').append(uri); });
-
Hello my name is....
Intriguing reading all of these, it is always nice to learn about people...for me anyway. I am Kenny, I am from Portland oregon, I am all self taught, but starting school next Monday for web development because frankly it will be the quickest way f…
-
Question: Technology used to make a to-do list web app
@nwalton, thanks for that, I am planning on trying to do something similar with no/almost no php...that link is a great reference.
-
Getting started.
I would suggest starting off at codecademy.com as it is free...Start with HTML/CSS and prgress from there...you learn by actually doing, I learned python basics through there, it's actually pretty fun.
-
gradient only shows on moz
http://www.colorzilla.com/gradient-editor/ uses a visual editor to make your gradient then makes the generates the css for you...Supports IE6 through all current modern browsers...
-
Web Design company responsibility when building website
I agree with @Paulie_D, Aside from all the other problems with SEO etc...The code/content ratio is probably horrid if they used tables, not to mention how unmanageable it will be in regards to tweaking it later...Did you make sure you ran the site t…
-
I love IE 7 (sarcasm) ! ... Interesting bug to solve !
dang...what a pain in the booty...I have no way to debug it really else I would be working on it for you...again, good luck!
-
regular expression
Yup, I have accumulated quite a few handy regex's and that is one of them: ]+)(\s*[^\/])> That can obviously be adjusted to suit any self-closing tag...