darrylm
-
Font weight issues
Firefox, Windows XP, Samsung B2430 display However, the exact same setup as above works elsewhere (there are two in the office, only one renders poorly)
-
sending and receiving data on php
AJAX is certainly a tool worth having if you're pursuing web development
-
Website feedback
Sorry for the late reply, yes, I think the white background is much more effective
-
Website feedback
Also, speed up the transitions on the reason blocks as users probably won't hover over them for the amount of time the white text takes to drop down.
-
Website feedback
I prefer the website without the background image, it makes the website appear dated in my opinion. The effect is used on the site title and this is enough. The website is for a salon, and using a white/plain background is appropriate to how a salo…
-
I got DDOSed; is it appropriate to blog about it?
"So teaching is cool, but bitching should probably be kept to myself?" Probably a nice rule of thumb for life
-
sending and receiving data on php
This can be done quite easily using jQuery and the jQuery form plugin, http://malsup.com/jquery/form/
-
sending and receiving data on php
I believe the best way to accomplish this is with AJAX. Data is entered into the form and on clicking submit, instead of being taken to login.php, data is sent to login.php behind the scenes, the data is processed and returned to index.php as you w…
-
at which width should a website have its min-width?
I tend to have the width of my websites ranging between 300px at the smallest and 1500px largest
-
li elements won't display as block
Those classes are thanks to WordPress, aren't they?
-
Mysql Query Appearance Help
Create a single HTML version of one record how you would like it to look, using whichever tags (not necessarily tables) with dummy data in. Once it looks how you would like, put the HTML between a foreach loop and replace the dummy data for that whi…
-
Twitter bird button is showing "Online Casino " link only in phone
Just use one of these https://twitter.com/logo
-
Seriously Though: What is the Best Way to Enque JavaScript?
http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Default_Scripts_Included_and_Registered_by_WordPress Keep your WordPress up to date and jQuery is already added to your theme. What's the problem?
-
Website redesign feedback/critique
The variable height of the slider doesn't work for me, keeping the page more rigid by having a fixed height would be a lot easier on the eye I feel
-
Website feedback?
Thanks Melindrea, There's also www.lorempixel.com/x/y/ The images I've used as placeholders are temporary but slightly related, at least more than some of the random images generated from these services.
-
Website Feedback ?
I like it as well, images lagged behind the rest of the site so they may need a little optimization
-
Website feedback?
I've made some small changes then. The hover transitions are now quicker (0.6s) and the background colour is changed to a subtle green rather than a full reverse. I've weighted the headers 400, in contrast to the 300 of the body (unless o…
-
Website feedback?
Okay thanks for the feedback, its been immensely helpful. I'll be taking into consideration comments on font weight and the service links especially. I should have said that the images on the service pages (callnps.co.uk/display, for example)…
-
Website feedback?
The blue and green are from the brand guidelines of the company. Is it a problem with the colour you have or does it create problems with the body copy and footer? The images are going to be improved to add a splash a little colour into them, altho…
-
where can i learn ui, ux and human user intrface
Not a book but a useful resource http://uxmovement.com/
-
Nav- Static to Fixed
The static nav on the example seems utterly pointless, it has the same elements as the nav only a few pixels above it. Just remove the second, and have the 1 fixed nav
-
Prevent hidden html from loading on mobile
Perhaps tackle the problem with JavaScript width detection and AJAX?
-
Where to put paddings/margins
I try to avoid margins and use padding as much as possible to avoid issues such as this one I had before http://css-tricks.com/forums/discussion/22100/unwanted-top-margin-in-firefox#Item_14 I also found if your background is a solid colour that bo…
-
Multiple images for custom posts and color variation
To attach images to the custom post type, perhaps use Meta Box plugin. It enables you to display a file upload button below the text box for the custom post type for which you can add the images. Follow the demo. http://wordpress.org/extend/plugins…
-
need help making one div fade out and another fade in in its place
I imagine without AJAX it'll be impossible Whether its faded out or the usual transition, the browser will need to make a request for the whole page, as each page is different according to the browser. To fade out only the content, AJAX will …
-
Vertical Drop Down Menu Not Working Properly???
If you need a drop down on hover, start off by hiding all nested unordered lists. Secondly, on hover of the parent unordered list, display the nested unordered list as block li ul{ display:none; } li:hover ul{ display:block; } To add differen…
-
How to implement Carousel with visible next/prev items
Thanks, CrocoDillon, by the way, I'll take a look at tsg.com again
-
How to implement Carousel with visible next/prev items
Paulie_D, I specifically wanted to know how to implement a carousel like the examples above. It is used across many websites which I thought would suggest there are resources/tutorials on how to implement it or a plugin these websites may be using.…
-
How to implement Carousel with visible next/prev items
Thanks, not sure if theres anything there that answers my problem really