I am not new to HTML/CSS, although I have never created a HTML email before.
Are there any nice online resources I
can look at to learn from?
What do I have to take into
consideration when it comes to email
clients?
Do they display HTML/CSS content
differently like browsers? (IE
problems etc.)
I am not even sure where the HTML/CSS ...
I'm not sure if this is exactly appropriate but I have what I think is a interesting question.
Does anyone actually use the phrase DHTML anymore in a professional environment?
I came across the the word the other day for the first time in years and shuddered at the thought of it. To me the acronym Dynamic HTML just sounds so 1999, it b...
hey,
if I set visibility:hidden on a nested li element, how do I set it back on hover?
eg.
#menu li ul li {
visibility: hidden;
}
I tried:
#menu li ul li:hover {
visibility: visible;
}
But it doesn't work - so clearly I haven't got the syntax right!
cheers
...
Hi all. I have a page with an iframe. Inside the iframe is code (that I can't change) that sets location.hash to the id of an element in the iframe window.
This has the unwanted effect of scrolling my outermost browser window so that the top of the window touches the top of the iframe. This is quite annoying as I have a toolbar above...
I have a jsp page with a couple of CSS files included.
In this, each CSS has separately defined styles for table.
The problem is that I need those different styles for different tables and I'm unable to differentiate them and the menu's css styles get overlapped with the new css style.
How can I avoid this problem; the menu.jsp has be...
I need to know how to fix this issue in the designs of forms..
Getting this in firefox
and this in IE...
the color is not an issue.. juz need the alignment to be fixed...
The code goes like this :
<div class="content_form_box7_main">
<div class="content_form_box7_main1">
<input type="text" name="email" value="Comments" class="conten...
I've been searching and i can't find any ff addons or javascript for finding unused css in ajax apps.
dust-me selectors
can do a site-crawl, but i'm looking for something that examines loaded-in content...
I'd like something where i can press 'record' and then make a load of clicks which will check off the used selectors, and hoping ...
Dear Great Coders,
I am having some trouble to get the id of the parent of a document which is "iframe1" here. As you can see the javascript should be residing in the "" section. Do mind giving me some ideas?
Yes, I know. I can insert the javascript on the top, but believe me i cant for some purpose because I am intergrating many othe...
I have blocks on page with background images, when I refer (click link) to the same page-images blink. How can I set chache or something else to extract this problem?
I tell about web http://pohladovybeton.sk/, especially in IE 8 after redirect (in page menus) is browser blink, and in Opera is blink content background, in FF is all OK a...
This is driving me nuts.
http://www.cssdrive.com/index.php/examples/exampleitem/focus_pseudo_class
This is an example of using the hover pseudo-class. Works fine in Chrome and IE. When I save locally it works fine in Chrome but won't work in IE. What am I doing wrong!?
<link rel="Stylesheet" href="style.css" />
<form>
<p>1) Name:<...
For uploading an image, the browse button is not properly aligned and also how can i change the colour of the browse button to red? I have used file field.
...
kind of a silly question, but ive been seeing things such as tbody and thead/tfood tags in other peoples tables
are these required even if they're empty for good markup? or can i just leave them out?
thanks
...
Hello,
I have a variable like
var theUrl = 'http://www.google.com/?q=%s';
then i have a input box like
<input type="text" id="searchBox" value="" />
and a button like
<input type="button" id="searchButton" value="Search" />
when the button is clicked, i should get a alert where the %s of the var theUrl should be replaced with t...
I wanted to disable frames of a web page so that i can view the text equivalent that is mentioned in the section. Can anyone help me with an answer
...
I'm trying to display the content of a html file with the loadDataWithBaseURL() method in android.
I just have a String that contains the Html file data in one String called source and I then pass this to the method.
for e.g
String source; //contain html tags with images
View.loadDataWithBaseURl(null,source,"text/html","UTF-8","about...
I've a developer which has given users the ability to download a zip archive which contains an html document which references a relative javascript file and flash document. The flash document accepts as one of it's parameters a url which is embedded in the html document. I believe that this archive is meant to be used as a means to tran...
The usual track of a page impression is fairly clear and simply: put the code at the end of the page.
But with the growing use of in-page changes to layout and content, when is it OK to log a new page impression and when would it considered to by just an record of an event?
My understanding is that page impression have a strong relatio...
I would like to create a JList in Java so that each individual item is formattted using HTML tags, but I'm not clear how to do this or even if this is possible. Does anyone have any suggestions?
Thank you.
...
Hello..
I have never used Watin before today. I need to get a collection of 'li' elements that are within a 'div'
<div id="myDiv">
<ul>
<li>a</li>
<li>b</li>
<li>c</li>
</ul>
</div>
I only want the li elements within the div id='myDiv'..
Thanks for any help!
...
I'm trying to hide or show a div based on the value of some radio buttons, css defaults the div to display='none'
Here's the input
<input type="radio" id="payment_type" value="cash" checked="checked" name="payment_type" onchange="showhideFinancing(this.value);"/> Cash/Debit
<input type="radio" id="payment_type" value="cheque" name...