Jump to content

patriklko

Members
  • Posts

    21
  • Joined

  • Last visited

    Never

Everything posted by patriklko

  1. The best method of coding for blinking text is using JavaScript... other tags are not compatible to all the browsers so try to use javascript, if it not working then check may be some parameter is not properly defined or supported... otherwise javascript is more suitable then any other concept...
  2. <div> tag is most efficient to display the two backgrounds which can overlay each other but if there is any browser compatibility issue than u can use nested tables by setting the width and height to display the appropriate effect of overlay layers.....
  3. you can adjust the two by creating a row <tr> with two columns <td> and adjust the alignment of the content to display it properly..........
  4. observe the code of the webpage must be the name is clashing with some other control as the coding is fine and should give positive results....
  5. the concept of frames are outdated now.....using <div> is the efficient and updated concept in designing webpage......
  6. u r using rowspan="3" in first row and in third row u r using 2 columns it may creating problem, try to avoid rowspan if possible and create individual rows and columns to achieve the results...
  7. either cut the picture into 2 and use as two different images which is a much better option to adopt or use the concept of image map....
  8. "margin" is not supported by "firefox" browser try using padding option it will work for all browser in a fine manner............
  9. css plays a very important role in formatting the webpage in terms of layout and appearance, tables only display the data in tabular format but setting width, height and spacing all can be easily set with just one css for whole website....we should have a website implementing css.......
  10. blue box indicates that the image is a link which can be avoided using "border=0" for <img> tag....
  11. create 4 pics of equal height and width then set them in single row four columns in a table by setting alignment as center.....
  12. input type image or button is suitable control to display button image, text is used when u want user to enter text in the form for some field....
  13. just add the vertical align property to the container in which the text is written, this will solve your problem...
  14. #TextBody { margin-left: auto; margin-right: auto; background-image: url('Images/Body_Head.png'); width:1000px; height:200px; } why u have set the width to 1000px; it will definitely cause some overflow problem with different browsers set it to 100% wi=hich will set your page text body fits to the container in which it gets open.......
  15. check the css code properly to display the desired background....in all browsers.......
  16. set the height of the container to the height of the image and set the margin, padding properties to 0....i hope it will solve the problem...
  17. it seems that you need a solid grey border permanently for the image which is used as a link whether the link state is active, visited, hover so try putting the border in the image itself and set the property border=0, it will solve the problem for all the browsers and u can have border also gets displayed with the image..........
  18. hi, screen shot is not available with your post so it is not possible to know the exact problem but as you have said the problem can be solved using width properties in the style attribute, but you should use a percentage value...like: <table style="width:100%"> OR <table width="100%"> this will expand the table to full width of the container in which table is designed and then set the columns text using valign properties...
  19. you can remove the extra space by setting bottom margin to 0px; and another option is to put the whole <table> tag in <div> tag and then set the style for <div> accordingly...
  20. One tip is very important while using CSS is that : All the css coding should be written in a separate external .css file and it should be linked in .html document. It helps to make the HTML document clean and light and also helps to edit the document formatting easily in one go just by editing a single file!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.