clokey2k
-
CSS3 bug(?) in Google Chrome
It looks like a z-index / positioning issue, I don't know what the behaviour should be within the CSS3 spec. If you apply a border to the '#menu-nav2' you can see the line it should trace, but your absolutely positioned items are …
-
does anyone know how to turn off etags in iis7
Sorry for the sarcasm. Best result from that search appears to be: http://kitsula.com/Article/Configure-entity-tags-ETags-on-IIS7
-
does anyone know how to turn off etags in iis7
Let me Google that for you: http://lmgtfy.com/?q=etags+in+iis7 =p
-
Back Links To My Web Site
I think that with most things a 'back link' has to be relevant. Just plastering links to your site all over the web could be seen to annoy the world. Just use your common sense. If posting in a forum, and have a relevant link to a page on…
-
help for college research paper
Designing with "Progressive Enhancement".
-
ah! i cant get my #content_box transparent again :(
OK after checking your 'iestyles.css' you haven't added a 'background: transparent'. It is key!!! In your regular CSS you provided a fallback colour of #111. In you IE stylesheet you need to override that with something lik…
-
content overflows beyond browser viewport, cuts off 100% header/footer backgrounds
You can 'hack fix' this by applying 'display: table' on the element containing the background. Not 100% sure it will work on 'HTML' or 'BODY' elements, not tried. Alternative methods could be to contain the t…
-
computer question
Decent SATA optical drives are available at reasonable prices in the UK, it's probably time to buy new :-) http://www.newegg.com/Store/Category.aspx?Category=10&name=CD-DVD-Burners-Media
-
ah! i cant get my #content_box transparent again :(
Sorry I copied the '.color-block' from Chris's post. It must be something obvious... I look at your site again later, see if anything jumps out...
-
Select ALL subfolders
I think the OP is trying to evaluate if he is in a specific set of folders. I'll word the query out to see if that is what the OP wants. "IF ( (NOT in the 'images' folder) OR (it is within the 'folder' folder)) { "…
-
ah! i cant get my #content_box transparent again :(
Whoops double post;
-
ah! i cant get my #content_box transparent again :(
*COUGH* 'background:transparent;' *COUGH* Please excuse my bluntness but in your IE stylesheet you want to override the background colour - like it said in the article: .color-block { background:transparent; //
-
Folder to domain rewrite + 301's
Ooh I misinterpreted part of your question. The instructions will allow you to tidy the Wordpress URL but you'll have to find some good tutorials to redirect the old (non-wordpress) URLs. .htaccess might be complicated, but you could place a f…
-
Folder to domain rewrite + 301's
See: Migrating Wordpress from Subdomain This was brought up in the past. The advise I gave in this comment seemed to work the best. If you don't fancy reading that it does directly reference: http://askwpgirl.com/how-do-i-move-wordpress-from-a…
-
Fade-In with Scroll Event
It is definitely an AJAX call to load the extra content, but it needs to be triggered when you reach the bottom. So: User reaches bottom of page/article, triggers AJAX function to load 'more' (could use the trigger in my example)AJAX loads…
-
Pure CSS Perspective Portfolio
.gallery figure:hover { -webkit-transform: translate(0,-150px); } Translate seams to move the content of the element, but not the element - so doesn't send the 'clickable' area sky high. EDIT: Actually translate made no difference …
-
ah! i cant get my #content_box transparent again :(
Chris has 'been-there-done-that'. IE is not a fan of RGBa; See if reading 'RGBa Browser Support' helps, there is a fallback listed.
-
Anythingslider: Pass current page number, to PHP
I am making assumption that 'img' is not declared as 'position: relative' whereas the 'a' is. Try adding a 'position: relative' to your '.nolink img'.
-
Fade-In with Scroll Event
I tried to recreate Mashables 'next page' widget, where a message would scroll in when you reach the bottom of the article. I use jQuery to find the offset of the target (an element after the article). Every time the '$(window).scrol…
-
help with lightbox
The page is looking to http://www.cordialcottage.com/js/lightbox/effects.js and not finding it (them). Double check those...
-
help with lightbox
Check the location of the effect.js and lightbox.js files; Again from Chrome Dev tools: Failed to load resource: the server responded with a status of 404 (Not Found) - effects.js Failed to load resource: the server responded with a status of 404 …
-
Feedback on my company's website?
Most of the HTML errors are rather minor, except for the messages about contained spaces. The funny thing is, I just validated my employers homepage - 235 Validation errors, Whoop!!! (A multi-national company whose tag-line is currently 'Expe…
-
add removing class on click once and again.
I was going to submit a response as I thought I had a good answer. I too did not know of 'toggleClass()' +1 for learning!
-
[Project] Animating background !
Once you are happy with the complete animation you might want to slow it down a bit. Could make it a little more subtle, and maybe a little less distracting from the foreground content. Keep the speed up while in development, otherwise you could sp…
-
help with lightbox
jQuery isn't being loaded. Someone forgot to close the stylesheet link:
-
Help Needed!! CSS background manipulation issues
See: http://css-tricks.com/9443-full-browser-width-bars/
-
Make exception for some internal links in Chris ALL AJAX Wordpress theme.
You could add a class to the links that you do not wish to be AJAX'd, and change the 'allajax.js' to include a '.not()' statement? $('a:urlInternal').not('.myspeciallinks').live('click', functi…
-
strange situation
I would say that the images.xml is malformed past the fifth image. The browser may treat the remote differently, maybe with stricter rules. Do you have a link to the remote version, or the full XML? Have you browsed to the remote XML directly to lo…
-
Menus in CSS
Most browsers appear to treat at as one resource throughout code, so no additional memory overhead - but I cannot back that up with any proof; Chrome has a task manager that can show memory usage ('Shift' + 'Esc' fin Win users).…
-
Why is my unordered list not sitting to the left?
"User Agent" styling. See http://cssresetr.com/, Chris linked to it a while back; A browsers has some preset styles already. A reset will remove all/most of them. Be wary however as if you have been marking up without a reset other things…