0
votes
2answers
52 views

Expand div to get remaining width with css

I need help, I have a 4 div elements, three of them have fixed width, one of them needs to be with auto width. Second element needs to have variable width. For example: <div id="wrapper"> ...
-1
votes
3answers
56 views

Which of these CSS methods would you use?

I recently came across this code which uses a way, which I've never used before, to position 3 columns on a page. I have included this method in my code below in GROUP 2. I use GROUP 1 to achieve the ...
1
vote
2answers
123 views

css - how to place div using z-index?

hello i have a short question on how to place a div class. i have two error layers with some error messages that i would like to echo out. for each of this error message layer i have a div class: ...
0
votes
4answers
59 views

How to autosize a div?

I have a short question on how to autosize a div class. I have some error messages that i would like to echo out. for this errormessages i have a div class: .wrapper form .error { color: #ccc; ...
1
vote
1answer
82 views

Transperant Div

I have 2 divs stacked. Means 1 div is on another div. Both div has transperant background color. So, when div is shown, both div in lower also shows because upper div is transperant. If there is ...
1
vote
2answers
259 views

Two Column html, how do i move a column?

I have two columns, floated left and right, like so: <div style="float: left;"> text1 </div> <div style="float: right;"> text 2 </div> but how can i move the right column a ...
0
votes
0answers
87 views

CSS Div Height Issue in accordance to containing elements

Having problems with css div height. I am using 1140 framework. <div class="fourcol"> <div class="home-content"> <div class="onecol"></div> <div ...
0
votes
1answer
103 views

DIV Style and DIV Position not getting along

<div id=mmactivate style='display: none'> <form> <INPUT TYPE="text" NAME="date1xx" VALUE="" SIZE=25> <IMG SRC=CalandarIcon.png HREF="#" ...
0
votes
1answer
28 views

Setting width to all divs

I'm sure it's very simple, but I'm having trouble figuring out how to alter the width of the divs. I need them to be at 1024px, I have it set in the style sheet for each one, and it still refuses to ...
0
votes
4answers
203 views

Background image doesn't appear on a specific page

On this site: http://walkman.pk/aserdus2/tagok.php I have two background-images on the left and right side, which doesn't appear, and I can't figure it out why ? Every other page of the website works ...
0
votes
1answer
429 views

Output Div Tag CSS Style Not Working

Ok so here's what's happening. Using the Moneypress LE plugin for Wordpress. Am able to effectively output the html though file "CSL-products_class.php" for a buy now button with the Div Tag ...
0
votes
1answer
340 views

How to make a DIV container that DOES NOT shrink/expand according to its text inside?

basically I want to make a button using a div container. It's a play/pause button, the symbol I use inside the button is bold "ll" for pause and the symbol "►" for play. However when I switch the ...
1
vote
5answers
825 views

Make <div> as wide as page

Let's say I have a <div> (#container) that's set to 960px for it's width. Inside that <div> , I want to create another <div> (#drawer) that's as wide as the page window. So ...
0
votes
1answer
212 views

CSS Float attribute won't place image elements next to each other, anyone see what's wrong with the code?

This is for a Wordpress site powered by Thesis. What I'm trying to do is have a featured posts area filled with whichever posts I put in the featured/featured2 categories. This is the PHP function ...
0
votes
2answers
569 views

CSS: Switch position with another

http://forums.animefushigi.com/showthread.php?161-Poll-Test I want to switch the position of "Vote Now" and "View Poll" Results buttons I'm having trouble figuring how what css to change to do this ...
3
votes
3answers
2k views

How do you specify a:link style in a div class implementation?

I have an anchor tag in a ... In my HTML, within the tag, I have .foo { white-space:nowrap; text-shadow: 0 -1px 0 #000; color: #000; font-family: Helvetica Neue, Helvetica, ...
0
votes
3answers
158 views

Too much space (floating divs)

I'm floating divs and now there is some gap. This is my code: <style> ul { margin: 0; padding: 0; list-style: none; } ul li { display: block; float: left; border: 1px ...
1
vote
2answers
304 views

A div 'infront' of a div?

I'm trying to code a design I've just made: http://www.richardhedges.co.uk/brlan/design.jpg I'm pretty much done coding but the only thing I don't know how to do is the footer overlapping the main ...
0
votes
2answers
66 views

DIV stylesheet attributes?

I am new to div stylesheet and i only discovered how to use : margin-top/left/right/bottom. What is the position used for ? What is left/right/top/bottom attrib used for? What is display used for? ...
2
votes
2answers
144 views

Crazy problems with HTML and stylesheets: stuff is showing up that I didn't even write

This problem is incredibly hard to describe. I feel like I've entered the twilight zone. However, I'm new to HTML and CSS, and there's a great chance I'm doing something completely wrong. I have ...
0
votes
1answer
761 views

div tag wrap around object besides float

i've been searching and i know that float:left or float whatever does that, but what if I don't want to use float? Is there another way to make a div tag wrap around its contents? if i do border: ...
0
votes
2answers
702 views

CSS divs width 50% not working in IE

I'm unable to get this working in IE, the second child doesn't remain in the same line. HTML: <div class="outer"> <div class="inner">left</div> <div ...
1
vote
1answer
223 views

Sticky Footer, but only sometimes

I've got a basic site with header, content, footer. What I'm looking for is a way to style the footer so that, depending on screen resolution, if the content doesn't fill the page it sticks to the ...
2
votes
7answers
854 views

Even column heights without using a TABLE

Is there a way to have two columns, that match each other in height, without using table cells, fixed heights or Javascript? Using a TABLE <table> <tr> <td ...