demersdesigns
-
How much do you charge for hosting ?
I agree with @TheDoc. Unless you charge enough to make it worth potentially getting calls at all hours of the night when the site goes down, it is not worth the hassle. It is good practice to suggest hosting services that you trust and even work out…
-
Should I tell client that I will be using a paid theme for their website?
Maybe the right approach here is, instead of just letting the client pick a theme, you should select a theme that you think has the functionality that matches what the clients needs are. Then, as you said, you can customize the look and feel and add…
-
Set Up Permissions In Wordpress
No worries. Glad I could help.
-
Set Up Permissions In Wordpress
This plugin may be helpful for setting privileges within the admin area of WP. http://wordpress.org/extend/plugins/adminimize/
-
Media Queries for desktop and iPad
@andy_unleash I agree with your mindset of not targeting specific device sizes with your media queries. Furthermore, I would say that this is certainly a pretty popular approach for designing responsively. Instead of using "guesstimates," …
-
How do I do this semantically correct? How would you do it?
You might also consider putting the items below "All six specialty services increased as follows:" into an unordered list.
-
fixed position on sidebar text without going to far down the footer
Hi John, This is a pretty handy jQuery plugin that I have used in the past. It should take care of what you need. http://www.wduffy.co.uk/jScroll/ Hope that helps! -Paul
-
Sticky Footer Help
Tanner, This is the method I usually use. http://ryanfait.com/resources/footer-stick-to-bottom-of-page/ Hope that helps you! -Paul
-
Embedding facebook 'wall' on website?
In looking further, I don't think there is a way to do it with an iframe. Facebook looks like it disables access via iframe. Not sure there is a good way to do it at this point. Sorry, I couldn't help.
-
[Solved] Creating a rollover affect to a box
Chris, If this section will be wrapped in an anchor tag, you can use the hover pseudo class to change out the background or add a box-shadow in css. If it isn't wrapped in an anchor tag, you could use jQuery to accomplish the hover effect. It …
-
Resizing background to fit browser window
metamoo, You are not dense, just new to the language. We were all there once. Here is what I would suggest for the background... The bubbles image can be applied to the body as a background image in css. The image looks to be something that repeats…
-
Embedding facebook 'wall' on website?
As far as I know, Facebook removed the RSS feed functionality as it relates to status updates back in Feb. Not sure about creating a custom script from the API, but I assume that if they removed the functionality from the front-end, they have most l…
-
Wordpress - prettyPhoto not working
lukewilde, Your links to both the js file and the css for the prettyPhoto plugin are not pointing to the correct location of the actual files. You need to point the paths as follows: Script -> /js/***Name of JS File*** CSS -> /css/***Name of …
-
Are HR tags bad?
The hr tag is not bad practice by any means. It is part of the HTML5 spec after all. I thought this explanation on HTML5 Doctor was spot on. http://html5doctor.com/small-hr-element/
-
[Solved] Fix overlapping of images
Glad I could help! Cheers.
-
[Solved] Fix overlapping of images
I think the overlapping problem lies within the percentage based width of the . If you take that out, the blocks no longer overlap. Then, you probably should add display block to the image so that your text won't try and populate the extra spac…
-
height: auto;
I would say that you should check out Ryan Fait's sticky footer method. This is what I use. http://ryanfait.com/sticky-footer/ Hope that helps!
-
height: auto;
What exactly are you trying to accomplish when you say you want the body height to be auto? Are you trying to make the footer always on the bottom of the screen no matter the content height?