Schmotty
-
Email Confirmation
Have you tried covering it with duct tape?
-
Connecting to database from another website secure?
Some servers have limitations on including files on other servers, for security reasons. So you'll have to test that. You can create additional MySQL users that you give read only access. You could do it where you have a page that includes a…
-
Web Developer Blog
If you have a site that displays your portfolio, a blog can improve the search engine rankings and increase the amount of traffic, possibly leading to more work. So as a developer I would consider it for sure, if you have time. I think the content w…
-
How to solving : CSS selector “:active” not working ?
I have had this problem before. I believe you need to order them correctly. link, active, hover, visited. Hover will work by itself, but active and visited will only work if it follows link.
-
Unwanted scrollbar in Internet Explorer versions
Sometimes the worst of problems are caused by the simplest of things. It took me a bit of looking, but I found your problem. morris.css line 343 set #slider.hot margin-bottom to -80px;
-
Thinking about redoing my logo
I was expecting something more 'pokemon.'
-
Fund rotator
@ChrisxClash is that math correct? $25000 to go is not 16.67% of $30000. You divided the current by the total which gives you the current percent, but not the percentage to go. It should be: var percent = (toGo/total)*100; But either way Madd w…
-
Site Feedback?
Pros: nice texture in the header and footer. I think you should apply this to the body tag so it goes all the way down when content does not.very clean and professional lookingeasy to read Cons: sterile...kinda boringnothing in the design suggests…
-
Fluid width ul->li problem
set your #menu width to 101% This will give enough room for that last item to pass the edge.
-
IDs vs Classes
ID is used to define a single object on the page. Class is for classifying certain objects. (is this too technical? I feel like a know-it-all). Myself, I use ID mostly as a js selector, but I will style by id when I have one. But really if you have…
-
Hideing index.html and CSS Sheets w/ Javascript?
or simply saving the page to their hard drive.
-
Heeeeeelllllpppppppppp!
Is this happening in all browsers, or just one? can you provide a link so that we can inspect it?
-
Mobile site designed in under 10 minutes?
agreed...that is very generic. He could have at least changed the colors to match the other site.
-
JM Logo Critique
The logo will play a factor in whether I hire someone, if I do not know of their reputation, but reputation will trump the logo any time.
-
Chrome extensions for web developers
I just use the built-in web inspector.
-
need a background trick
You could use fixed position on that background and increase the z-index of the footer.
-
Does the background look 3dish?
Slightly, yes. Closer objects are larger so you should decrease the width of the lines in the background to increase this effect. I see you made the background darker, desaturating it a bit will help too, like a distant haze.
-
Annoying work colleague (sass/compass)
Then you should remove the drugs from his car before the cops get there.
-
How to get rid of credits in footer?
I suggest buying the theme without the links, like the author requests in the comments. This will avoid you getting sued or jumped in a dark alley.
-
invert hover state
I think this could be done with CSS. http://codepen.io/pen/6216/1
-
New User Sign up problems
And when I view my own profile there is a large blank column on the left.
-
Critique Please
I like it. Graphically it is very well done. suggestions: nav menu hover state doesn't feel right. The slow transition is to soft for the intense colors scheme of the site. I would make it snappy.The floating ground at the footer looks weird …
-
How do you learn?
I can not do personal projects unless I have a specific goal. I need to be able to show it to others and brag about it, or I'm not really interested. So helping someone else build a jQuery plugin would be how I learn jQuery, because I currently…
-
How do you learn?
What I do is go to this forum and ask people what I don't know, and then play on js-fiddle (or codepen) or dreamweaver until I figure it out. I refer to language references often so I can remember what "that function" was called and h…
-
Why to declare display block for block elements?
You might need it if you were using js to change the value, I think. I did something where I wanted to show/hide on click and I set display:none to hide it and display:block to show, but it wouldn't work unless I set the property to something b…
-
What is this thing called and how to implement it?
Well a sticky footer can be just that same way if you always fix it to the bottom of the browser. And javascript isn't needed unless you want the sticky to move with the page while its where it is supposed to be and then stick after is official…
-
How to Calculate Days B/W to given Dates
if you have the dates, convert them to unix timestamp, subtract the earliest date from the latest and then convert it back to number of days. $early = mktime(hour,minute,second,month,day,year,daylight savings?); //all of these are optional but sho…
-
What is this thing called and how to implement it?
Its called 'fixed' or 'sticky' set the property of position to fixed and top to 0 .itemstucktotop { position:fixed; top:0px; } Make sure to add a margin to the top of the page so that content doesn't start behind the fi…