There's no slide show, it's a vertical gallery (the placeholder images) that "slides into view" (the panel). Using the spacebar and key strokes (see the...
Found a jQuery snippet that works nicely:
<script type="text/javascript">
$('img').ready(function(){
$('img').bind("contextmenu",function(e){
return false;
});
});
</script>
As you are a newbie I'd advice you to setup a Wordpress site and stay away from building a fairly complicated site from scratch or even using one of the templates you mentioned. Wordpress is a good...
If the image has no real significance, remove it and see if someone on Flickr or Stock.XCHNG has a decent replacement. And always read the terms of use (this comes from a photographer and designer).
I am using this line of code to prevent right-click (and subsequently save image):
<img src="img/myimage.jpg" onMouseDown="if (event.preventDefault) event.preventDefault()" oncontextmenu="return...
I'm building an online artist portfolio. The client want the curriculum page to be an outdent list
list-style-position: outside;, but, with years instead of bulletpoints or decimals.
I forgot to mention that the problem ceases to exist after adding a doctype, but that caused other problems. It's a while ago I worked on this project, don't remember...
The "helptag" (the red label on the left of the page) on this website has to be clicked twice to see its content (it slides to the right). After the second click it makes a weird jump which it...
Removing the old jQuery JavaScript Library v1.3.2 (jquery_002.js) removes the scroll function of the panels. Combining jquery.js + jquery_003.js works perfectly though!
Thanks WestWeb.
Wouldn't the content of that file have duplicate functions, or, aren't those jQuery files older versions of 1.4.2? Excuse my n00b questions.