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 SkipVought 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. DaRNCaT

    spell check sitewide?

    if MX2004 is similar to the earlier MX versions, you should be able to open a page within your site, click text, and then 'batch spell check' which should allow you to choose while folders/ files you want to check. ---------------------------------------- Sometimes, when my code just won't...
  2. DaRNCaT

    faulty links in browser preview

    I find that when you veiw a page linked from the page you F12, all the external links get 'lost' (depends how they are linked, relative vs absolute, and the location of the linked files etc), the site should work fine once you put it to a remote site. ----------------------------------------...
  3. DaRNCaT

    avoid button canvas

    create a slice and export the slice ---------------------------------------- Sometimes, when my code just won't behave, I take it outside and make it listen to britney spears music, and when it comes back it's really well behaved. I wonder if it's suffering from post traumatic stress syndrome now..
  4. DaRNCaT

    spaces between inserted pictures

    if you REALLY don't want to use the above style, then a non breaking space would be the other alternative, you'd have to type   between the pictures in the code. The style is the obvious, right and simple solution though ---------------------------------------- Sometimes, when my code...
  5. DaRNCaT

    website help...

    Gosh, it's ALL images............................ I like the design, it's really nice, but you are going to have huge problems if you ever need to change the content, because you'll have to re-do the image, export it, redo any links etc...... alot of hassle. Also, Load Time: images are slower...
  6. DaRNCaT

    Can't resize images without loosing resolution

    You can't make an image bigger and expect it to look better than the smaller image, there isn't enough information stored in the image to size it upwards, only downwards. Basically, each pixel has colour information, if you expect one pixel to become 1.5 pixels, or 2 pixels by enlarging the...
  7. DaRNCaT

    Was working fine, now broken in IE, code the same?!

    Cheers, I found the error, when the layout was split into include files, comments were added to the main page to seperate the includes, and one was added above the header include, which I think put it back into quirks mode. Moral of the story, don't add crap above the doctype, even if it's...
  8. DaRNCaT

    Was working fine, now broken in IE, code the same?!

    I've designed a site with CSS layout, given it to the developer, and it was until recently, working just fine, now the left side is all messed up in IE, now I know it's something to do with IE's box model whatsit, but I can't find any changes anywhere that would account for it, it simply doesn't...
  9. DaRNCaT

    help with css code

    this is wrong #header ul { clear:both; text-align:center; border-top:1px solid #E9D7C3; } #header ul { margin:0; padding:0; list-style-type:none; background:transparent; height:3em; } You can't use the same label twice like that, which might be the whole problem you are...
  10. DaRNCaT

    Cutting out pictures

    Use the lasso tool, and either add or subtract mask, or simply delete the selected area. Shift adds to the selection, alt removes from the selection (from memory) while you are working on it. ---------------------------------------- Sometimes, when my code just won't behave, I take it outside...
  11. DaRNCaT

    triangular images

    The only way you can cut an image is into a square/ rectangle shape, you can't shape an image into a triangle. I suggest you make two seperate images the same size, with the illusion that they are divided into opposing triangles with transparent backgrounds, and then use layers (html) to make...
  12. DaRNCaT

    Transparent image bg changes colour in IExplorer

    If the background is going to be a set colour, USE that colour on your image background instead of making it transparent. ---------------------------------------- Sometimes, when my code just won't behave, I take it outside and make it listen to britney spears music, and when it comes back...
  13. DaRNCaT

    Large Background image on Pages slows site

    Tell your client to stop being a prat, and that load time is more important than their 'pretty pretty' ideas, you're the designer, make your argument persuasive and let them know that YOU know best, and what they are asking for will suck the life out of their website- nobody hangs around to see...
  14. DaRNCaT

    the difference between ./ and none?

    I've redesigned a site, and at the moment the redesign is sitting in a sub folder waiting to go live. Some of the include files are linked <?php include("./includes/header.html"); ?> and some are <?php include("includes/header.html"); ?> the includes folder is in the sub folder and both...
  15. DaRNCaT

    ASPX pages - how to use includes?

    I'm not including the aspx file, I want to include my header and footer .html files into the aspx page. any suggestions? ---------------------------------------- Sometimes, when my code just won't behave, I take it outside and make it listen to britney spears music, and when it comes back it's...
  16. DaRNCaT

    Expanding Code using Studio mx

    I'd suggest you use a validator and try and see what the error is- some validators will give you a pointer in the right direction (usually an unclosed tag) I don't know of anyway of seeing all the code from includes all at the same time- you'd be better to cut and paste them onto a testing...
  17. DaRNCaT

    ASPX pages - how to use includes?

    the page starts like this (I know nada about asp, so excuse my stupidity) <%@ Page language="c#" Codebehind="contactus.aspx.cs" AutoEventWireup="false" Inherits="ContactUs.contactus" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > <HTML> <HEAD> I obviously need to fix the...
  18. DaRNCaT

    Creating graphics for print

    I find Corel Draw is quite user friendly and there is a new programme out 'inkscape' which is a vector graphics/print package, but on the GPL license, so it's a good starting point (i.e it won't cost you big dollars to try) ---------------------------------------- Sometimes, when my code just...
  19. DaRNCaT

    Server Side Include (SSI) not working

    Thank You! It needed to be 'file' not 'virtual' I have no idea what kind of server it is (just redesigning the look and feel for a client) - I suspect it might be a windows server, and I'm usualy working with Apache. ---------------------------------------- Sometimes, when my code just won't...
  20. DaRNCaT

    Server Side Include (SSI) not working

    I've used SSI's before, no problems, and I asked the server admin to set up SSI's to be allowed on .html and .htm pages, but no matter what I've tried path wise (./, / and no/)I still get this error Active Server Pages error 'ASP 0126' Include file not found /testing/contact_us.htm, line 1...

Part and Inventory Search

Back
Top