I have an inline styles in my page as :
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>:: Inline Style Page ::</title>
<style type="text/css">
<!--
body
{
background: #fff;
font: normal 12px Tahoma, Verdana, Arial;
color: #636363;
}
#header
{
he...
I am inspecting the html at this site:
listverse.com
I see that they have inserted ID numbers in the List Tags such as
<li id="comment-220669">
What is the comment-220669 for. And what are they using it for?
If they are using this ID tag to pass information back to the server. How can i do this using c# asp.net mvc?
...
Hi, I am looking for css layout theme similar to Molio, Pilu’s web-app-theme or Yui App Theme. Anyone got any other recommendations?
...
I want to insert an image tag into a block of text so that the image is, say, 100 pixels down in the DIV.
<div>
A lot of text in a text block and a <img tag> somewhere
that is floated left or right and positioned inside the text block
</div>
So, the tag above is put in the text block to be floated so that it is positioned...
I am using dl,dt and dd tags in one of my project . Now I want give a bullet before dd .
How can I make my dd's to a bulleted list using css ?
Any Ideas ???
...
How do I get the CSS property top from a element in javascript.
I have tried document.getElementById(element).offsetTop however this always returns 0. When I have set top: 500px; in the CSS of element.
...
I want to put a 3d curved look in a list item I have whenever you hover on a list item at my sidebar .
How would I do this with css?
EDIT::
I have a list in a side bar.
When I hover over a link I would like it to appear as if it is written on the curved surface of a cylinder
...
Hello all:
Based on my research, it seems that what I want to do is not possible, but in case something has changed, I wanted to check to see if anyone had come up with a way to do this.
I have a web app that generates reports for print based on user selections in the browser window. I have a custom header and footer that, when the rep...
I'd like to select ALL of the disabled textboxes and add a Class to them, how do I do this in jQuery
...
When doing a background in css I am usually just using a gradient background that starts at the top, then eventually ends a solid color. So I slice up a thin layer of the gradient, repeat-x, then have the background set to a certain color
(background:#color url(image location.png) repeat-x)
However I am faced with a unique obstacle I...
Can i hide text in a DIV after a number of characters with jQuery?
So far I think it would go something like this - jQuery would cycle through the text until it gets to a certain number of characters. It would then wrap a DIV from that position to the end of the text which could then be hidden with the hide() method. I'm not sure how to...
I need to hide horizontal overflow of a html element but not the vertical overflow. So assume I have the following HTML:
<div class="container">
<div class="inner">
<p>content 1</p>
</div>
<div class="inner">
<p>content 2</p>
<p> and then some more stuff</p>
</div>
</div>
The CSS I wanted to use was something like:...
I've just spent the last month or so designing a new layout for my website. I think it's about perfect, however, I've discovered that there's something stretching my site horizontally beyond the page width. I've searched through my code and I can't seem to figure out what it is. If you check out my test page, you'll see that there is ...
I am developing a script in PHP for uploading files to a MySQL database. There various things that need to selected in addition to the actual file that go into the database entry. The script needs to be designed so that it checks to make sure all of the proper selections have been made, and if they are not the script returns to the upl...
ComponentArt home's page has a top dropdown nav menu. I like it's professional look with the image and bordered item container. I was wondering if there are any free similar components with can be used in asp.net pages. I am not looking for any dropdown menu. I am looking for one as close as the one I mentioned. JQuery ones are fine.
...
Hi all,
I want code to create a vertical menu in CSS and also want to create a sub menu in that vertical menu. Please help me in this regard
...
Hello guys.
I experimenting with Flex Styling, and i came across a alignment issue.
I have two image components inside a HBox, and the HBox inside a Canvas, which in turn is inside the main Application.
<mx:Canvas id="Navigation"
horizontalCenter="0"
bottom="0"
left="0"
right="0"
visible="true"
height="40"
styleName="transparen...
I want to have a vertical text (going from top to bottom instead of from left to right). I used:
.vertical {
writing-mode: tb-rl;
}
But that doesn't work in Firefox. Is there any cross-browser compatible way to achieve vertical text?
...
I'm encountering some weirdness with tables in css.
The layout is fairly simple, a fixed-width nav bar on the left and the content on the right. When the content includes a table with a width of 100% the table ends up getting pushed down until it has room to take up the full width of the screen (instead of just the area to the right of ...
Is it possible to HAVE a bullet in front of a <dd> tag just like <li> i cannot use <li> because i need to validate and <dl><dt>and <dd> is just fine
...