I'm working with software that uses a web interface, but this software apparently doesn't support linking css files in the usual way:
<link href="style.css" rel="stylesheet" type="text/css">
The software renders the pages directly, it doesn't go through a "real" web server. Are there alternative ways to link a css file that I might t...
I am having a strange problem, i am using easy slider 1.5 for slides. Everything works fine but when i load the page for the first time, right side overflows, then after refreshing the page once, everything goes to fine.........
here is the link for the main page link text
Okay here is my CSS part of the code, i think that i dont know ...
Hi, I am using this site.
Aim :
I want to move my footer based on the content of every page.
1)If there is more content then i want to put my footer after the content.
2)I want to fix the footer to the bottom of the window screen, if there is no content like this in the following picture
My existing CSS :
I am currently using min-he...
I'm trying to get the font-weight of a property using latest jquery, doesn't work in IE somehow... on IE dev toolbar console -
$('#ctl00_ContentPlaceHolder1').css('font-weight')
returns
700 !
I checked in the source... can't see any problems with the style formatting. Works in FF.
...
I want to set the color to the border of the select box and its contents.
I am able to see the color to the border of select box in IE. But I cannot see the border color in Firefox.
I want to set the color to the border to the select box items also.
Is there any way to do this ?
To set the border color to the IE I am using the followin...
http://clifgriffin.com/blockade2/
Ok, I have an unordered list that serves as a list of menu links. In each li there is a div that is set to absolute positioning, bottom: 0. The idea is you hover over the link in the li and jQuery animates the height to show the hidden menu div.
It's a simple concept, but I am apparently a retard.
The...
I've spent a few hours now trying to figure this one.
I've got a store display that cycles through properties and I've knocked up a simple gallery sort of script. For the last week it has worked beautifully.
I went in today to tinker some unrelated JavaScript (but on the same page) and now there is an issue.
To make the images fade to...
Is it possible to make an html element appear clickable with JQuery?
By appear clickable I mean have the mouse pointer change appearance when the user hovers over the the element.
I dont want to use a tag.
...
Not sure why text-align property always return left in jQuery for IE?
<script>
$(function() {
alert($('#ctl00').css('text-align'))
});
</script>
<span style="font-weight: bold; text-align: center;" id="ctl00">
...
I am developing a flash based website using mxml. My monitor's resolution is 1280x768 and is widescreen. The problem is while it appears properly in my screen it doesn't appear properly in others. Which is the best approach to solve the problem ?
I have 2 in mind.
Let scrollbars take care of it : If the screen is 14 inch screen...
Hey everyone.
How do you set the size of the drop down box on a select element?
Not the select element itself but the drop down box part of it when you click for options?
______________
|____________| input box
| |
| |
| |
|____________| size of drop down box containing options
Thank you for your help...
Here is how I style tables now:
#content table {
width: 100%;
margin-top: 1em;
border-collapse: collapse;
border: 1px solid #222;
}
#content table td {
border: 1px solid #888;
padding: .3em;
}
What I am trying to achieve is to have tables with black outside border (#222). However, I want the inside border to b...
First of I am new to CSS and don't seem to understand how classes interact with id's, thats why I can not get the following menu to work.
<div id="navmenu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="index.php?=1">Menu2</a></li>
<li><a href="index.php?=2">Menu3</a></li>
</ul>
</div>
This is my CSS:
#navmenu u...
Hi All,
I am using jasper report with my application and generating the reports in pdf formats, which are coming up fine. We want the user to be able to view those reports in html also with in the application, but generating HTML from jasper contains inline CSS for its individual element which we do not want. (We want to apply our own C...
Hello friends, I am wondering if my jquery function is correct
<script>
window.blinker = setInterval(function(){
if(window.alerta){
$('a.cadastrotopo').css('color','#346698');
$('a.cadastrotopo').css('text-decoration','underline');
window.alerta=false;
}
else{
$('a.cadastrotopo').css('color','#000');
...
How can I change the font color of a disabled SELECT element in IE? No matter what I tried it stays gray. I was able to change the background from gray to white but the text inside the disabled SELECT stays the same. What works perfectly for Firefox has no effect in terms of font color in IE (in this case IE8). You can see the latest sit...
Sitepoint reference says
Internet Explorer for Windows versions
5.5 and above support the non-standard property zoom, which sets the
magnification scale of an element.
There’s no CSS3 equivalent to this
property (as yet).
How can I achieve this zoom effect in standard browsers? Any jQury plugins available?
...
I hardly use float:right in my css and now I did and came across a annoying problem. I am floating my menu items to the right
my HTMl
<ul id="extMenu">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Feedback</a>
</li>
<li>
<a href="#">Contact</a>
...
hi..
i want to align container of the OPTIONS of the select element to the right... the default is showing OPTIONS on the LEFT BOTTOM of the control...
so how will i show OPTIONS aligned to the RIGHT BOTTOM of the select element?
take care...
...
Hello !
I don't 'speak' english well, pls forgive it to me.
I've a serious problem, soon I'm going to crazy... :-)
I got a job : There is a website, that is contains some ExtJ functions. I have to change these to JQuery functions.
I'm started to change dialogs. Under IE8 / IE7 it works fine, but under FF 3.5.10 it's not perfect.
The...