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 wOOdy-Soft 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 dexthageek

  1. dexthageek

    Overlapping divs

    Your suggestion worked perfect. It always seems like IE is the bad child when it comes to dealing with CSS. Thanks your help was invaluable to this project. Mike
  2. dexthageek

    Overlapping divs

    Dan, Awesome, thanks for the info, I will give it a try later. I will let you know of the out come. Thanks again. Mike
  3. dexthageek

    Weather on my site

    Weather.com has a decent free program which allows you to add the weather to you site. here is the link: http://www.weather.com/services/oap.html?from=homewxanywhere I know Weather Underground has a program too, but im not sure of the link or if there is a charge for it. Hope this helps. Mike
  4. dexthageek

    Overlapping divs

    I am having a problem on in IE (of course) with my css menu. When a user scrolls over menu link and the drop down list appears it appears beneath any divs located below it. You can see what I am talking about here: http://dexthageek.com/samples/avp/2/portfolio My CSS files are available here...
  5. dexthageek

    Local Websites not Viewable

    I work for a school district and there are ALOT of websites that need to be filtered. We also needs good reports on user access. Plus the school gets money back from the state when they use a state approved Web Filter. The only problem I am having is the Smartfilter Block page being properly...
  6. dexthageek

    Local Websites not Viewable

    BUMP Anyone have any ideas?
  7. dexthageek

    Local Websites not Viewable

    Let me start by explaining my setup. We are in the process of testing webfilters Currently, I have ISA Server 2004 running and SmartFilter 4.1 running for content filtering. All external websites are viewable (except for those blocked by the filtering software). ISA and webfilter software are...
  8. dexthageek

    create new row if more then X number of items

    Got it to work using the following code thanks for the help $maxItemsPerRow = "4"; $pets = array('dog','cat','mouse','snake','hamster','pig','cow'); $numberItemsInArray = count($pets); print "<table width=\"300\" cellpadding=\"0\" cellspacing=\"0\">"; $count = 0; print "<tr>"; for ($i = 0...
  9. dexthageek

    create new row if more then X number of items

    can you give me an example?
  10. dexthageek

    create new row if more then X number of items

    I already have a pagination script I wrote a few months back. However I do not want to change pages, I just want to display the content in another row. So if I have 10 items and I want 4 items per row the output should be item 1 item 2 item 3 item 4 item 5 item 6 item 7 item 8 item 9...
  11. dexthageek

    create new row if more then X number of items

    I am in the process of writing a script that will take an array and output the results in a table. I have been successful in outputting the results in the same row. However, I want to start a new row, after it displays a specified number of items; Example Output: Number of Items Per Row: 4...
  12. dexthageek

    Trying to create Custom FLV player

    I have videos that I converted to FLV, now i want to create my own custom video controls with a slide bar. I would like the controls to be reuseable and use a php script to pass the correct movie to use. I found VideoSpark Player (www.videospark.com) which is great (it uses xml file to tell...
  13. dexthageek

    Frontpage Extensions, UserDir and Apache

    Darla, I am going to look into the server errors that apache is giving you. Regarding the references to '/usr/local/etc' those are unix/linux directories and will not be on your machine Mike
  14. dexthageek

    Frontpage Extensions, UserDir and Apache

    Hi Darla, I assume you are adding those values to your apache configuration file. Your ServerRoot and DocumentRoot look good however you have a space between "User Dir" it should be one word "UserDir" Not sure if that is just a typo here in the forum or what you actually have in your apache...
  15. dexthageek

    Frontpage Extensions, UserDir and Apache

    I was able to figure it out. Here is what I did: 1. Enabled UserDir (Apache) 2. Set Proper Permissions for UserDir folder 3. Created VirtualHosts one for primary site and one for supervisors site. The files for the supervisors site are located /home/username/public_html so the user and...

Part and Inventory Search

Back
Top