Search results

  1. J

    Problem with adding text into cell

    Also...try removing any additional spaces between the end of your content and the closing </td> tag...I know the browser shouldn't pickup on that space unless it's a &nbsp; but I've had that cause problems for me in the past...worth a look any way. I hope that helps.
  2. J

    Site Ripping

    Try http://www.httrack.com/ On a website that I was building I had a need to emulate another website, but because I was working on my laptop and didn't always have an internet connection I used this program to basically copy all the content of the entire site locally...so I could actually go...
  3. J

    auto div heights

    use height:100% instead of auto...this should set your left/right menu divs to 100% of their parents...which is your #container2 Please let me know if that worked.
  4. J

    Keyword Selection

    Different types of keywords will help determine whether your visitors are "just looking" for information or if they are interested/potential buyers for your e-commerce site. The more specific the search query, the more likely users are going to be looking to buy something. A person searching...
  5. J

    Show/hide element[Java]

    Try using javascript getElementById() method and set the visibility of the div you want to hide. You'd have to put an onmousever="ShowDiv()"....or something like that..and a onmouseout="HideDiv()" <a onmouseover='ShowDiv' onmouseout='HideDiv'>Link here</a> <div id='div1'>some text...
  6. J

    image strecthed when sending html email

    Maybe try putting in the specific height/width attributes into each <img> tag
  7. J

    Website Design with DIV tag

    It's pretty common, when you first start out to build your sites using tables because it's easy to visualize and you have a fair amount of control. But you'll notice that you have even better control of your layout using div tags. You can nest div tags to give the same sort of layout a table...
  8. J

    Best Ecommerce Cart Software For Clothing Shop?

    E-Commerce software I'm currently using nopCommerce and I think it's great. Its fairly easy to skin and give you tons of control over your store. It's also search engine friendly (which is always good for an e-commerce site!)
  9. J

    body tag in my website

    A couple things: I used this style on your body tag on the index.html page: style="margin:60px 0px 0px 60px;background:#9CC3C3; background-image:url(images/miri1.jpg); and your background came up as expected in IE8, Chrome and Firefox. With your last post..if you moved the background...
  10. J

    problem with div and ul (CSS)

    Can you post the entire html code? Are you having problems spacing in a particular browser or all browswers?
  11. J

    browser compatibility

    You have a lot of <table> tags on that page....try setting you inner-most <tr> to have valign="top"...I see that some of the tr tags have the alignment, but not all...just because a parent <tr> row has top vertical alignment won't mean than inner <tr> will inherit that.
  12. J

    Design Large Entry from

    Your best bet is to probably to use tables and css. You'll be able to control the size/spacing of the columns as well as the look of the forms controls (dropdown lists, buttons, textboxes, etc...). <style> .formTable { width: 500px; } .formTable td { padding:5px; margin: 5px; } .label...
  13. J

    CSS going to end of screen instead of end of page

    Hey Polette, I sounds like you might be needing a sticky footer. Check out this link, it might be helpful. http://ryanfait.com/sticky-footer/
  14. J

    Link underline on "Registered" Symbol

    Because what ever is inside the <a> tag is going to be underlined, the browser just recognizes the <sup> and shrinks the decoration on it too. This is a bit of a cheat, but it gives you what you're looking for. <div style="border-bottom: solid 1px #000; width:1px; white-space:nowrap;"><a...
  15. J

    User Editable Website

    Well, it sounds like your project is going to have a lot of server-side processing and logic...so you'll have to decide which programming language to use (php, asp, asp.NET, python, etc) Any language that allows a connection to a database. Javascript won't help you as it is a client-side...
  16. J

    Please review my website look and seo wise

    Hey Jeff, The home page is REALLY busy. Once you get to some of the inner pages, it is much better, but you have to lose that blinking "LIVE CHAT" image...my eyes started bleeding. Other than that, the site looks pretty good. As far as SEO goes..at least on your home page, you have a lot...
  17. J

    Link Paths

    Try searching for "Bread Crumbs" that's the path the user has taken to get to where they're at. I think you'll need some server side processing to get that, but you might be able to just get it out of the http request.
  18. J

    Website Design Grid Layout

    One thing to mention is that if you're using Photoshop to slice up your psd file, it will slice it up into a table...although it's a pretty simple solution, it's much cleanerto use <div> tags instead. Then you can use CSS to easily change the widths, background colors/images, etc so if you do...
  19. J

    ASP.NET languages

    Hi there, I've been a .NET developer for 6 years now and I have worked mostly with C# so I'm a little biased. As far as getting into .NET and picking a language to work with, I would probably lean toward C#. It is more of a real programming language...not to say tha Visual Basic is NOT a...
  20. J

    Review my site

    I'd have to agree with consultingpalac, there is something a little off about that logo I think it would look better if it were all together on one line...the design of the rest of the site looks pretty good.
Top