Hi, I have a div:
#logo_area
{
background-color: #d9e670;
filter:alpha(opacity=25);
opacity:0.25;
}
and another div:
#logo_image
{
background: url(../images/logo.png) no-repeat center 50%;
}
<div id="logo_area">
<div id="logo_image"></div>
</div>
Of course, logo_image is transparent too. Could I make it untrensparent in transpa...
The title pretty much says it all.
Using jQuery, I need to select all elements that do not have a background color or image defined, and apply at least a white background to it.
Thanks!
...
CSS code formatting question: I have an old habit of adding a single space before the { starts a new CSS rule, like this:
body {
font-size: 16px
}
the whitespaces like this one between body and { add up throughout the css.
Ideally, i'd prefer writing my rules like so (and thus saving whitespace):
body{
font-size: 16px
}
Actua...
I have an html application running in IE6(yes it has to be 6 for the time being), currently I print a page/report of the application. This report is all html and just uses the browsers built in print functionality. It currently spans more that 1 page i.e. scrolls, and the printing functionality prints the whole page, even what is not v...
This is probably really easy, but I've never done it before. How do you change your cursor to the finger (like for clicking on links) instead of the regular pointer?
And how to do this with jQuery since that's what I'm using it for.
...
Our simplemodal alert div needs to be printable. The content itself should fit on the page fine in most cases, but I can't override the positioning in my print css to get it flush top/left for printing to avoid having the right side cut off.
It seems like I can change #simplemodal-container in my print css for everything but positioni...
<tr>
<td align="right">
<div style="background-image: url(image/menustript.bmp); border-right: #ffffff 2px outset; border-top: #ffffff 2px outset; border-left: #ffffff 2px outset; border-bottom: #ffffff 2px outset;">
<asp:ImageButton ID="ibtn_home" runat="server" ImageUrl="~/image/homebutton.jpg" ImageAlign="Midd...
I don't know if it's a common problem, but I can't find the solution in web so far.
I would like to have two divs wrapped inside another div, however these two divs inside have to be align the same level (for example: left one takes 20%width of the wrappedDiv, right one take another 80%). To achieve this purpose, I used the following exa...
I have an instance of CKEditor on a page. I am trying to give the CKEditor's body a class or ID so it matches some styles I have defined in a stylesheet.
There is a API documentation that should give access to the respective DOM elements, but I can't seem to get it working. All objects I try to query that way turn out undefined.
Does a...
Hello
I am trying to use Jquery to find TD's with X or Y content (text) inside. For example:
http://sotkra.com/btol/index.php
From left to right, the 7th COLUMN that reads 'TIPO MONEDA' displays either PESOS or DOLARES. I'd like to be able to do the following:
1.- Select TD's with the text 'DOLARES' or 'PESOS' and add a class to them...
Hi as I said some times before I'm new to CSS coding, I want to know if it is possible to create a glass sheet (vista/seven like but without the buttons) around the template using only CSS, I know how to make rounded corners:
<style type="text/css">
#box {
position: relative;
width: 100px;
}
.corner {
...
I am trying to change thematic default theme to take the whole browser page ...
for example: http://themeshaper.com/demo/thematic/
Is there a simple fix that can be done? I tried few things on that page with firebug but none seemed to have worked..
...
I have used two div tags in my blog to wrap programming codes. The first one is used to set outline box with fixed width with the following css class:
.outlinebox {
width: 435px;
border-width: 1px; /* sets border width on all sides */
border-style: solid;
border-color: #666666;
padding: 5px
}
The second div is used as...
Page - http://blu-eye.com/index.html - contains suckerfish menu which is displaying correctly on the rest of the site, except for this page. The menu items are hidden behind the content below.
The content below it contains a javascript slider with image and text. I've tried changing the z-indexes on majority of elements, but still havi...
hi,
i have few listbox widget, and i need to change the color of the arrow that opens the drop down list, and its surrounding box
how can i do it with the CSS?
is there an attribute list for all styles that can be applied on a widget?
Me
...
This is the site which has a problem
http://www.clubforeducation.com/
Top menu will change its color at mouse over. All browsers except chrome and Safari. Is it a Webkit bug. If that how can i solve this?
...
Does anyone know of any good examples of usage of HTML5 elements that are well-styled out on the intertubes?
Specifically, I'm curious to see <article>, <aside>, <meter>, <nav>, <header> and so on.
I'm specifically not interested in video, audio, offline or drag-n-drop files. Just the cosmetic stuff.
...
Hi,
I am wondering if anyone knows how to achieve the following - take a look at http://www.dspts.si
The first 1/3rd of the screen has an empty background and from there onwards there should be a pattern repeating. I did it right now, by creating a very long pattern png and set it to offset 300 and repeat-x. However, I'm not happy with...
I'm trying to create a div which will have fixed width and flexible height , here is the picture which I want to use for background. The thing is when I have div larger than image height the bottom rounded corners are omitted and also if I have div less than the size of image same thing, how do I make this work with round corners with al...
What is a technique to add drop-shadows to text that would work in Firefox 3.0?
FF3.5 and Chrome support the CSS3 property drop-shadow:
p { text-shadow: #000 2px 5px; }
IE6, 7, 8 support filters:
p { filter: shadow(color=#123456, strength=2); }
How would you do it for Firefox 3.0? It uses the Gecko rendering engine and none of the...