In one of my VS projects I get this error when I modify a css file in a App_Themes catalog in runtime.
CS0042: Unexpected error creating debug information file '[..]\Temporary ASP.NET Files[..]\App_Theme_MySite.pdb: The process cannot access the file because it is being used by another process.
I've used the Process Explorer and ...
Hi, I want to center my web page footer and create a reasonable gab between it and the above content. Currently, the footer has a line and paragraph joined to the above content. I can push down the content but the line does not move. I am sure the property I am missing out in my css style sheet. Could someone help?
This is my html mark ...
Hallo,
I using the following code from css play. this display a menu.
.preload16 {background: url(m_admin/m_admin_2.gif);}
.preload16a {background: url(m_admin/m_admin_2a.gif);}
.m_admin {padding:0 0em 0 1em; margin:0; list-style:none; height:43px; position:relative;
background:transparent url(../images/menu2/m_admin_back.gif) ...
Howdy,
I love this neat thing found on css-tricks:
a:active {
position: relative;
top: 1px;
}
Every link gives a little trigger-response.
However, I want almost all my links to do that, except the ones inside of .children.
Can I create an exception like :not (from jQuery) within CSS?
Thank you for your help!
...
I would like to implement a facility like Orkut offers where user is able to configure the colors and style for the site, and the changed styles will be used for the user.
I would like the user to be able to enter the color combinations for the site background, top navigation, and left navigation.
Can some one please let me know what a...
I have managed to get header at the top, and content at the center. But I did get stuck with placing user-navigation div at the right of the content. I have tried using position:relative, but what happens it appears below content's div, but on the right though, and also when I scroll down the view, it appears on top of the header.
So h...
Hi, I got following CSS:
.Resource table.Tbl td
{ /* some css*/ }
.Resource table.Tbl td.num
{ /* some css 2*/ }
.Resource table.Tbl td.num span.icon
{ /* some css 3*/ }
.Resource table.Tbl2 td
{ /* some css*/ }
.Resource table.Tbl2 td.num
{ /* some css 2*/ }
.Resource table.Tbl2 td.num span.icon
{ /* some css 3*/ }
where the CSS...
my css for the menu
ul#menubar {
width: 800px;
padding: 27px 10px 5px 10px;
list-style: none;
text-align: center;
}
ul#menubar li {
display: inline;
}
ul#menubar li a{
border-right: 1px solid #111111;
font: 12px "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Gr...
I am trying to CSS assigned inside the head tag using JS, its not working for IE any idea why? IE just show "Unknown runtime error".
<html>
<head>
<style id="style_id" type="text/css">
</style>
</head>
<body>
<p>This is the test Text</p>
</body>
<script>
var st = document.getElementById("style_id");
st.innerHTML = "p { color:re...
how i can select all tr except first tr in the table using css.
how i can select them using css
i used this method and find that first child not worked
http://www.daniel-lemire.com/blog/archives/2008/08/22/how-to-select-even-or-odd-rows-in-a-table-using-css-3/
...
Take a look at this screenshot from Firefox:
The two left and right arrows are translucent text, at 20% and 80% opacity. The text has a text-shadow style applied. The images behind them also have varying opacities applied.
Other browsers are working fine - even IE6, in its own pathetic minimal way - but Firefox is drawing a strange b...
Hello ,
I have one div which is dynamic and getting the increments in the css dynamically from jquery to fit the contents if they are larger.
now the problem is that there is one popup associated with the same div.
if content increase that popup's comes down, I don't know how to solve this issue . please help.
HTML
< div id='main...
This code works with IE 7 and above, but not with IE6:
img.myclass{
opacity: 0.5;
filter: alpha(opacity=50);
}
What should I add to my code?
Thanks
...
I am currently testing out Blueprint to create the layout for a site. So far it has been going great, but now I've run into a problem I'm wondering if there is any elegant solution to.
I am using the default 24 column layout and have a situation where I would like to do something similar to:
<div class="span-8 box">..</div>
<div class=...
Hi there,
I am reconstructing a dropdown menu similar to a <select> box using div's and jquery. The div containing the dropdown items should have a minimum width, but no maximum width as it should grow along with the widest item in the list (so if i have very long item like '[This is the longest item within the container]', the whole co...
How to get blue div in line of yellow div without changing the html and without using negative top margin on blue div?
css
<style type="text/css">
#main {width:600px;border:1px solid red;overflow:hidden;height:800px}
.float-left {width:200px;height:100px}
#right-side {float:right;background:blue;width:400px}
#...
Are there scenarios where it is (for some reason) required to place the CSS rule inside the style attribute of the HTML tag directly instead of placing the CSS rule inside a selector in the STYLE element in the HEAD of the HTML email template?
(I am asking for the most common CSS selectors, like type, class, ID, descendant combination...
Hi Guys,
this is my first post here.
I have Code for displaying the scrollbar on the left side of the div:
body
{
direction:ltr;
}
and
<div style="direction:rtl;">
and the text is still left to right
everything works great in IE
but in firefox and safari it displays still on right side
any ideas / suggesstions / help would be...
I have an index.html which has a huge form in it.
The form is submitted by this javascript:
byId("p").value = page;
byId("nav_container").focus();
document.forms["nav_form_main"].submit();
The focus part doesn't work here...
I want the browser to focus on a specific part of the page (almost at top).
Any tips of what to do?
PS: I ha...