Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Wolfie7873

  1. Wolfie7873

    docroot not reading correctly

    Nope. They are not symlinks of each other, and for good measure, I removed the Options FollowSymLinks directive and it still serves the wrong directory.
  2. Wolfie7873

    docroot not reading correctly

    from httpd.conf DocumentRoot "/var/www/html" yet I know from logs that apache is instead serving from /home/user/public-html What gives?
  3. Wolfie7873

    Permissions issues? Old Partition

    Meh, tried it - still didn't fix everything. Ended up backing up to an external, formatting and starting over. Perhaps not the elegant solution, but it works now.
  4. Wolfie7873

    Permissions issues? Old Partition

    Had an existing installation of Vista on a hard disk. Decided I wanted to create a partition for the OS separate from my user files for restoration purposes. Created a small partition from the available space and installed Vista on that partition. Now, of course, all of the files on my "user...
  5. Wolfie7873

    Why is the color blank?

    The Alert box is blank. Why? <script type='text/javascript'> function changeColor(x) { var mycolor = x.style.backgroundColor; alert(mycolor); var myDiv = document.getElementById('bigOval'); myDiv.style.backgroundColor = color; } </script> <body> <div...
  6. Wolfie7873

    horizontal centering of DIV

    The best recommendation I can give you is to not use tables for this. Consider positioning divs instead. You can also javascript the position of the cursor and snap the div the cursor position.
  7. Wolfie7873

    onmouseover --need onmouseout?

    Generally, it's good practice to include the pair of functions together. However, what would you change it to? Likely nothing better than what's already displayed. A user would find it very distracting if the large image kept changing back to something else. Leave as is. Well done.
  8. Wolfie7873

    On/off button

    Try triggering the function call with an onClick event in your div. That's what that function is for, when you want something to happen when you click.
  9. Wolfie7873

    Webkit gradient on HTML element

    Safari 5, Chrome 10. I now have: html { background-color: #888; /* for non-css3 browsers */ -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=1, startColorstr=#888888, endColorstr=#dddddd)"; /* for IE 8+? */ filter...
  10. Wolfie7873

    IE drop shadow doesn't always work.

    The shadow class below is applied to three elements, however in IE8, it only renders on one, the most interior. Anyone know how to get it to show up on the other two divs for which it is declared? .black_shadow { -moz-box-shadow: 2px 2px 5px #000; -webkit-box-shadow: 2px 2px 5px #000...
  11. Wolfie7873

    Webkit gradient on HTML element

    I have my html (parent) element styled thusly: html { background-color: #888; /* for non-css3 browsers */ -ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=1, startColorstr=#888888, endColorstr=#dddddd)"; /* for IE 8+? */ filter...
  12. Wolfie7873

    Trouble configuring virtual hosts

    Why do you have so many separate .conf files? How are they being included into httpd.conf? You have more moving parts than you need, which makes debugging a pain. Put this in httpd.conf: NameVirtualHost *:80 <VirtualHost *:80> </VirtualHost> Put this in hdesk.conf: <VirtualHost *:80>...
  13. Wolfie7873

    CGI::Cookie w/ Mason

    Trying to do some session management. Have this: { package HTML::Mason::Commands; use vars qw(%session); use CGI::Cookie; use Apache::DBI; use Apache::Session::MySQL; } # Get the incoming cookies my %cookies = CGI::Cookie->fetch or die "could not fetch CGI::Cookie"; # Try to...
  14. Wolfie7873

    undo a declaration?

    Sweet. Figured it should be simple. Thanks!
  15. Wolfie7873

    undo a declaration?

    Is there such a thing as undo-ing a declaration? Under normal circumstances a div will expand vertically to contain its content unless you specify a height. I'm looking for a way to dynamically change a div whose height has been specified back to a div that expands on its own. I want to...

Part and Inventory Search

Back
Top