How to adjust the font size
Hi, I've been trying to change the font under the "Future 1", you can see the code here; but if I change the font, changes doesn't apply. http://jsfiddle.net/b5fMe/15/ What seems to be the problem? ...
Hi, I've been trying to change the font under the "Future 1", you can see the code here; but if I change the font, changes doesn't apply. http://jsfiddle.net/b5fMe/15/ What seems to be the problem? ...
Hi there, the title may be a little unclear, so here's a screenshot of what I mean: HTML & CSS Sourcecode All elements use the same CSS class, so shouldn't they all have the same width? The bigger the border gets, the bigger the difference becomes. How do I make sure the div and the other elements have the same width? Thanks in adv...
Hi, I have a CSS button that has normal, pressed and hover states. Everything works fine except that when the click has happened, I need to somehow know whether the style should be set to normal or hover. That is, I need a way of knowing if the mouse cursor is still hovering the element. How would one achieve this with JavaScript? ...
OK here is my code $("#content_Div").ajaxStart(function () { $(this).css('cursor', 'wait') }).ajaxComplete(function () { $(this).css('cursor', 'default') }); this is a fairly simple problem: on ajaxStart the cursor immediately changes to the (wait)hourglass but on ajaxComplete it doesnt change back to defalut untill you move t...
Hi, I am using WordPress 3.0.1 and the Twenty-ten theme. Can someone pls let me know to to add spaces to this section of text in the Visual Editor. HTML Editor Mode looks like this: <p style="text-align: left; padding-left: 30px;">- With each visit each client will be provided with a full detailed<br /> report and invoice<br /...
Is there a quick/easy way to have tabular data and have a button that turns them to thumbnails (kind of a 2-view system, table/thumb)--I'm not looking for image thumbnails... Any ideas are appreciated! :) Examples: ...
I'm working on a webpage right now and I need the background of a div to cover the entire page (100% width). My problem is that the content of the div should be centered in a 950px div which is centered and the div with the background is placed within a div with 950px width. I can not figure out how I shoud get this to work. Could so...
If I decided to use Silverlight, does this mean that I'm no longer working with html/css/javascript on the client side? ...
I can't believe the number of bugs I have to sort out due to IE6...Can somebody have a solution to all the IE problem in WordPress ? here is the file : http://www.notrepanorama.com/ you have to login to view it http://www.notrepanorama.com/wp-login.php login/ psw : test / test NOW in firefox (real browser) you see the red box (top righ...
var text = '#anything {behavior:url("csshover.htc");}'; //iam using " with url text += "#anything {background:transparent url('img.png') no-repeat;}"; //iam using ' with url text += "#anything {background-image:url('ok.jpg');}"; result #anything { behavior:url("#"); } #anything { background:transparent url('#') no-repeat; } ...
Why is the link using the underline? <html> <head> <style type="text/css"> body{ text-decoration: underline; } #text{ text-decoration: none; } </style> </head> <body> Text text text <br/> <div id = "text"> <a href="#">link</a> </div> </body> </html> ...
I have a web the uses css to convert the to use a jpg instead of the bullet: div.myzone ul li.checkbox{ background: url(../images/cube.gif) no-repeat 0px 3px; list-style:none; } in a left to right page it works fine. (JPG some left just. text). when I try to convert it to right to left - the text is right justified, ...
I am working on a non-profit site that has a press information page. I am using thumbnail photos as links to the larger images for download. For the thumbnail images I set the border to 4px white in the off state and then 4px gray in the hover state. I works nicely in Safari but is slightly offset in Firefox in the hover state. Here is...
I currently have two navigational links (arrows), but they tend to push other elements on the same height (a textarea in this case) away. The picture below illustrates the problem: How do I make it so that the arrows won't interfere with, but exist on the same height as the textarea? I'm left clueless, help is much appreciated :-). ...
including the 'border-radius: num1 / num2;' property gives a '/ is an incorrect operator' error. any way to get this to validate? ...
I want a flag of country to appear in the text field. It works fine, when all icons are kept separately. For example: #search input[type="text"] { background: #FFFFFF url(GB.png) no-repeat right center; } <div id="search"> To: <input name="to" type="text" /> </div> However, having more than 60 flags makes a lot of possible H...
Hi, I'm creating a webpage with two stacked divs. The first div is a banner and the second div is the content. The problem I'm facing is I want the second div to stretch to the bottom of the page without creating a scrollbar. I could wrap the whole thing in another div and set overflow to hidden, but the second div will be filled with c...
Hi!, i have a web page using a css style file who have this property: body { background: #7a9c12 url(images/main_background.jpg) top center no-repeat; color: #bbb; font: 12px/14px helvetica, arial,Sans-serif; } As you can see this code only puts a background image on the top center on the div body. But, i need a background...
I have tried EVERYTHING to be able to style JUST text inputs with internet explorer. Unfortunately IE doesn't support using [type=text] so that's out of the question. I even added support for http://ie7-js.googlecode.com to my webpage with <!--[if lt IE 9]><script src="http://ie7-js.googlecode.com/svn/trunk/lib/IE9.js"></script...
So I want users to be able to see my background on my website. Currently my websites width is 925px and when you view the website in a mobile browser (e.g. iPhone, Opera Mini) it is zoomed in on the text and the user can't see the background. I've tried using the meta viewport tag unsuccessfully. How do I get my website to be zoomed out...