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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. RedRobotHero

    City Map service

    I want to be able to link to a map with a location, similar to what can be done with Yahoo Maps. But, I'm wondering if there is a similar service only that it is more customizable, like I can use my own logo, template, etc.
  2. RedRobotHero

    IE is splitting a line in two when printing

    When I print a web page in IE, it splits the last line of text on a page horizontally, printing the top half on one page, and the bottom half on the next page. How can I change my page so that IE prints it correctly? I'm in the midst of making the print style sheet for this site.
  3. RedRobotHero

    match regex multiple times per line

    I'm trying to harvest links from an html page. (Not for anything nefarious, I assure you.) This is the code I've used to match the links: foreach (@page) { if (/href=\s*['"]?([^\s'"]*)['"]?/) { push @links, $1; } } My trouble is this will only match once per line. How...
  4. RedRobotHero

    h1 font-size %

    I want to set the font-size for <h1> <h2> <h3> etc. for a site I'm working on. Now, it's easy enough to set it to a pixel size, but the site I'm working on I'm trying to let the font size be set by the browser. I was trying to set H1 to 150%, but, of course, it displays at 150% of what H1...
  5. RedRobotHero

    Black comes out gray in .PDF

    Why is it that when I export to a .PDF, objects that I had set as black print as a dark gray is the .PDF version? Is there a way for me to change this?
  6. RedRobotHero

    CSS rollover ruining margin in IE

    The page where it happens is right here: http://www.horriblepain.com/apollo/gallery.html When you go over the CSS rollover that changes the background color, it makes the bottom margin of a different DIV disappear. I'll post a strippped-down version of the page soon.
  7. RedRobotHero

    form button fun

    I have a form with two buttons. One is a submit button, and the other runs a function to calculate the total price of what was entered in the form. I want to run the calculate function when I press enter. Right now, it submits the form. How do I change the actions performed when I hit enter?
  8. RedRobotHero

    Layout wrong with clear:both

    I have a page that displays correctly in Opera 7 and Netscape 7, but not in IE 6. The offending piece of code is the following: <p style=&quot;clear:both&quot;> http://www.horriblepain.com/buy/hillthology2.html (This is it without the clear:both.)...
  9. RedRobotHero

    External .js files

    I'm having trouble including an external .js file. When I put the javascript directly into the html, it works. But when I use <script type=&quot;text/javascript&quot; language=&quot;JavaScript&quot; src=&quot;/menua.js&quot;></script> to include it, it doesn't work...
  10. RedRobotHero

    div background image

    I have a background image in a div. The background image displays as I want it in IE 6 and Opera 7, but not in Netscape 7. You can see the page here: http://www.melissa-martin.net/about.html This is the .css I'm using. #mback { border:none; padding:0px; margin:0px...
  11. RedRobotHero

    Sound cuts off too soon

    When this code is executed, the sound cuts out far too quickly. I don't have crash.stop() anywhere in the code, yet. How do I get it to play the whole sound through? crash = new Sound(this); crash.attachSound(&quot;crash&quot;); crash.start();
  12. RedRobotHero

    Layout in Netscape 7

    I'm having trouble getting the layout for this page consistent in both Netscape and IE. Right now it works better in IE. There are three DIVs, of class &quot;bottomlinks&quot; &quot;main&quot; and &quot;listing&quot;. &quot;bottomlinks&quot; should come below the other two, but appears above...
  13. RedRobotHero

    Selecting all &lt;ul&gt; with id=&quot;foldinglist&quot;

    I'm changing a folding menu script. The last thing I need to change is in the persistance code. I need to make it default to closing the menu when there is no persistence cookie. To do this, I need to take all the <ul> with an id of &quot;foldinglist&quot; and change the style to...
  14. RedRobotHero

    Getting the right order with Regular Expressions

    I'm making a CGI script that will convert another file format into HTML with style tags. In this format, (Xtags) there's two types of tags I want to use, one of the format <@[a-zA-Z]+> and one of the format @[a-zA-Z]+:. I want to deal with these codes in the order in which they appear from...
  15. RedRobotHero

    Folding menu not working in IE 5.2

    I'm using a folding menu from Dynamic Drive. It works fine in IE 6 and Netscape 7, but not in IE 5.2 on the Macintosh. Which is surprising, because the code tests for IE 4. You'd think it wouldn't be relying on anything only available in new browsers. I don't get any error messages, and the...
  16. RedRobotHero

    Not reloading images

    So, I'm working for a catering business with an ordering page made in ASP. They want me to add images to the page. As it stands, every time you order an item, it reloads the page. Now, if there's a lot of images on the page, how can I encourage the browser to not reload all the images each...
  17. RedRobotHero

    xtags

    I've been exporting Xtags from Quark Xpress 4.0. I've read through the description of Xtags found here: http://www.xpressobar.com/download/downloads/XPressTagsList.pdf And it describes many of the tags in this format: <s#> But in the code Quark actually produced, there are no '>'s. It even...
  18. RedRobotHero

    Resizing object

    So I am trying to make a script that resizes a flash object according to what the screen can fit. I don't do a lot of Javascript, so I could be making an obvious mistake. Here is the source. <OBJECT id=&quot;flashobj&quot; WIDTH=400 HEIGHT=400> <PARAM NAME=movie...
  19. RedRobotHero

    Parsing html through a CGI script

    I want to make a script that shows an altered version of other web-pages. I will need to parse the html so that I can manipulate blocks of it. Can anyone point me at an available script that already handles most of the parsing so I can get on to the fun stuff?
  20. RedRobotHero

    Script changing parts of layout it shouldn't

    In IE6, on this page: http://www.horriblepain.com/cgi-bin/mmarticle.cgi?0&2 When I expand the folding list on the right, the margins and padding for several elements changes. Why would this be the case? The Javascript only turns .style.display on and off. Is there anything I can do differently...

Part and Inventory Search

Back
Top