Question about jQuery thickbox 3.1
When the user opens the thickbox window, I have a button that they can click to show some content that's originally hidden. Right now when you click, the content shows and pushes everything down and the thickbox window gets scrollbars. I'm trying to figure out how to make the thickbox window resize i...
Problem part 1: Basically I have the age-old IE problem of overflow: hidden; not working in IE. The fix (which does work, admittedly) is to also add "position: relative;" to the element/parent; however this causes a problem for me. Firstly I want to know if there's another way without appending position relative.
If this is the only ...
I asked a question awhile back about how to properly do my css/html so I could make a rounded widget based on an image I had. The question was answered here and the solution works great.
The widgets look just like I want them to:
Their basic structure is:
<div id="widget3" class="widget">
<div class="widget-top">
...
Here an example my wordpress post. I want to add some class to the last of <li>
something like <li class='lastli'>
<ul class="tabs">
<?php
global $post;
$myposts = get_posts('numberposts=3');
foreach($myposts as $post) :
setup_postdata($post);
?>
<li><a href="#"><?php the_title(); ?></a></li>
<?php endforeach; ?>
...
Hi, I want a hyperlink that looks like a standard button. I have tried using a LinkButton but can't get it to look like a button. It always seems to stay looking like a hyperlink. I don't want to set an image to do this.
Any ideas?
...
On my site cryptscript
the border color is darker in ie than in Firefox and I can't seem to fix it?
...
I am embedding swf object into my html document, but its showing border on top and left of swf object, how to remove it?
Same result on all browsers. If i increase the dimensions of swf object then border start appearing on all sides. I dont want the border at all.
...
I'm developing a product to be used by a number of customers alongside our Web application.
Quick background:
These customers have incorporated into their pages a widget that we've developed.
The widget's content can be modified by using our application.
The idea behind this product is a bookmarklet that we supply, which will "highlig...
This is a two part question - first I need to get every element that is a child (or subchild, etc) of a parent element, and then I need to reset it's style. As such, I'm looking to do something like the following:
var everything = parent.getEveryElementBelowThisOne();
for (i=0; i<everything.length; i++)
everything[i].css = "font: 10...
Hi all,
I've just encountered a problem that my current (almost equal to 0) CSS knowledge cannot deal with. Here's the thing:
I have some text inside of a div element; this div element (let's call it a container) has a fixed width and dynamic height (no constraints). I'd like to put some text inside of the container; after the second ...
I have used a CSS layout grid system (960.gs) It is a liquid system, and for some reason the header-right and content right divs are not staying on the same line to the right. Does anyone know why this would be?
Thanks
...
I have a div with a padding, created and styled by Javascript.
This div is created on a page with the following CSS rule:
div {
width: 100%;
}
This messes up, as it changes the width of my created div to what it naturally would be PLUS its padding (so I end up with buttons outside of the div borders). I can't statically set div wi...
how to remove the border and transprant
...
Hay I have an element like this
<span class='a.b'>
Unfortunately this class name comes from an eCommerce application and cannot be changed.
Can i style a class name with a dot in it?
like
.a.b { }
Any advice would be great
Thanks
...
I need to set some special style for an element if some other element is visible (which is indicated by a special css class and can change dynamically). I need to do this because the page rendering and it's behavior is fully controlled by some framework's code and I don't want to change it. I can put any content anywhere in the body of t...
I am using following structure.
<div style="background:#000 url(images/heading/bg.gif) repeat-x 0 0; height:28px; color:#FFF;">
<div style="float:left; width:4px; background: #000 url(images/heading/left_curve.gif) no-repeat 0 left; height:28px;"></div>
<span style="margin: 0 4px;">asdkjhkhasf</span>
<div style="float:ri...
I have been struggling to try and place an image in the middle of a line of text.
"this is text THIS IS THE IMAGE this is text"
Any idea?
Thanks
...
Hi!
I have a 2 column layout that I'asked about earlier (http://stackoverflow.com/questions/3423761/simple-2-column-layout).
What I've noticed is that it's not the positioning of the content column on the right that's the problem, but rather it's the way the content in that column is positioned.
I've been looking for a while and I can'...
I have a landing page created as a single html file with an external css file and a bunch of jpeg images. It looks fine and everything is good with it. I need to insert this page as an article in Joomla so that it looked the same way as it does now, without broken styles and missing images. It should show all header, footer and sidebar c...
I was trying to get rounded corners in IE7 using jQuery's "ui-corner-all" class. This is how my page looks like.
<html>
<head>
<script language="javascript" type="text/javascript" src="jquery.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$('#btnSearch').addClass("ui-corn...