How can I solve this font rendering issue on Firefox on OSX?
I've run into a strange font rendering issue on Firefox on OSX. It seems to be adding an extra pixel above the font whereas Firefox on Windows does not. ...
I've run into a strange font rendering issue on Firefox on OSX. It seems to be adding an extra pixel above the font whereas Firefox on Windows does not. ...
Hi, I have a jquery image slider, but it only shows 2 slides, so i cant really add more images than whats in those 2 slides is there any way i can create more slides here is the code /* Slideshow */ $(document).ready(function() { slideshow_loading = true; slideshow_busy = true; current_slide = 1; slideshow_l...
<style type="text/css"> #overlay { background-color: #ccffcc; display: none; margin-left: -400px; position: absolute; top: -250px; left: 50%; width: 800px; height: 500px; visibility: visible } #container{ color: white; background-color: #0ff; text-align: center; position: absolute; top: 50%; left: 0px; width: 100%; ove...
Hi everybody! My problem was that I wanted to add JavaScript into a html page, thanks to Andy E, I find the way to add my JavaScript into a html page and be executed. But now my problem is that all the page is overwritten by the JavaScript. Someone know how to do the same thing but without overwritten the page with the JavaScript, somet...
Hi How to have text in Vertical in PHP ?? I need text to be displayed in vertical style in Table Td text it should print vertical or i need it to rotate ? ...
I'm trying to change the text color in a <p> to gray. I thought doing something like <p class="gray">content</p> and p.gray { color: #333333; } would work but it's not doing anything. The color remains black. Help please? EDIT TO INCLUDE ENTIRE CODE HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www....
Hello, I have designed a template to list items on ebay and I have some compatibility issues with internet explorer (8 in this case..i assume other version as well). Here is a beta test of the item I've put up for sale with my new template: http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=300451388766 The part of the page that ...
I have a table of width 800 and one inner table within that of width 100%. The tr td looks like this <tr><td align="right" valign= "top"><c:out value="HOUSE: " /></td><td nowrap align="left" valign= "top"> <c:out value='${houseBean.houseLabel}'/></td></tr> Now when houseLabel goes beyond 5 values, the table grows beyond its width of...
I am trying to attach a numerical "post ID" value to comments so that they can be retrieved from the database and displayed in the proper place. How do I establish this numerical value within my html form as something that gets sent to the script that inserts it into the database? I assume I need to use GET or POST but I don't understand...
How would I select all the tables between the table whose id is header_completed and the first table after the header_completed one that has an align of center? Here is the html I am selecting it from: <table border="0" cellpadding="0" cellspacing="0" width="920" align="center"></table> <table border="0" cellpadding="0" cellspacing="0" ...
I ask because my buddy posted a question earlier on How to resolve issue with image path when testing HtmlHelper? and a few of us in the office got talking about how to resolve this. One of the guys suggested that he wouldn't have this issue (Test crashing because it has a dependency on functionality in IIS) if he was referencing the i...
Possible Duplicate: How do I disable right click on my web page . How can I disable right click in web-pages that I am developing? ...
I would like to be able to create a page using HTML and scripts to display text in which each character is of a different randomly generated color. With a javascript graphics library that supports the creation and use of RBG colors and the Math.random() method, it is simple to make randomly colored lines/shapes/etc, but I do not know ho...
I know that in HTML4.0 <p> tag is not a block-level element. What about in XHTML 1.0? Thank you This is the reference for HTML4.0 http://www.w3.org/TR/html401/struct/text.html The P element represents a paragraph. It cannot contain block-level elements (including P itself). Was that my misinterpretation? ...
The image posted below is taken from a word document. I need create a similar one in HTML. Which tags should i use to help structure same way you see it below. Discard the fonts/colors tags. ...
Is it possible to enforce this layout in html tidy? <p> Hello </p> The current result is <p>Hello</p> ...
((<(\\s*?)(object|OBJECT|EMBED|embed))+(.*?)+((object|OBJECT|EMBED|embed)(\\s*?)>)) I need to get object and embed tags from some html files stored locally on disk. I've come up with the above regex to match the tags in java then use matcher.group(1); to get the entire tag and its contents Can anyone perhaps improve this? Is th...
I'm working with WampServer Version 2.0 on Windows XP and FireFox 3.6.8. I'm trying to get image content via PHP script like this: HTML: <img src='temp_get_file.php' alt='picture not found' /> PHP: (temp_get_file.php) <?php header('Content-Type: image/png'); $img = imagecreatefromjpeg("1.png"); imagejpeg($img); imagedestroy($img); ...
This may be a dumb question, but do you make unit tests for the HTML output of your PHP functions/scripts? I try to keep my HTML and my PHP separate - i.e. HTML includes with placeholders, and functions for certain recurring elements (tabular data / any sort of looped output) - but I'm not sure how to go about verifying this. Is there ...
when i run this code : Process printjob = new Process(); printjob.StartInfo.FileName = "file.html"; printjob.StartInfo.UseShellExecute = true; printjob.StartInfo.Verb = "print"; printjob.StartInfo.CreateNoWindow = true; printjob.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; pr...