0
votes
1answer
18 views

center align div image variable width

I've found a few threads / FAQs about this, but none of what's suggested seems to work for me, so I'm not sure if there's something else going on with my code....but the example can be seen here: ...
1
vote
2answers
53 views

inline divs that adjust width automatically

In case of 2 divs. one is static and other is dynamic. That is one div width should be 400px (This one I call as static div as it has static width) and the other div should occupy the rest width (This ...
0
votes
0answers
8 views

Specific website How to make 2 divs stay side by side adjusting to screen size

The last week I've been searching through some similar questions and answers and other websites and still wasn't able to do what I want on a website that I'm developping... My last hope is you! I'll ...
0
votes
1answer
15 views

Two divs, static div on the left side and fluid div on the right side

Here's my situation: .left { float: left; width: 150px; height: 300px; margin-right: 20px } .right { float: right; max-width: 450px; ...
0
votes
1answer
33 views

Select all content in div when clicked?/Resize textbox to fit text?

I've been searching around now for a while and I can't seem to find the answer I'm looking for. I'm making a little box, which has the width of the text inside it that, when clicked, selects all ...
0
votes
3answers
27 views

Determine Pragmatically the width of a div inside an iFrame via jQuery (or voodoo)

I have a div. That div lives inside an iframe. That div has a width. I would like to get this width via jQuery. Attached are some of my adventures in doing so. Please enjoy! ...
0
votes
5answers
44 views

Middle div 100% width

How would i make my middle div take the remaining space left in width, but still staying in its place beside the 2 other divs? Also if i remove either of the 2 divs on the sides, the main div should ...
0
votes
1answer
38 views

CSS / div with width 100% is a few pixels too high / why?

I want to build a website that scales to the browsers width. It all works fine, except that the parent-div containing the 100%-width-divs is always about 5 pixels too high. That gives me huge ...
0
votes
1answer
35 views

Problems with stretching center div between fixed width divs

I have 3 divs inline. 2 of which have set px widths(outside divs). I want the center div to fill in all the space between the two outside divs when the window adjusts. Here's an example of my ...
1
vote
1answer
25 views

Restrict div width to single child element's width

I'd like to use image captions and since the figure tag is not supported in IE8 or below, I thought a <div> containing <img> and a caption would help out. However, when my caption is ...
0
votes
3answers
48 views

Full width page divs

I'm designing a website, I'm trying to get a simple coloured div across the top of the browser, I've tried simply using: div{ width:100%; } but noticed there's white space on either side and on ...
0
votes
4answers
21 views

Change div's width by a value in JS

How to change div's width by a certain value, like this: someDiv.style.width += "100px"; It works when I want to set a value (i.e. width = "100px") but the problem is with += operator.
0
votes
1answer
26 views

Content-dependent div with labels

<div id="combobox"> <label><input type="checkbox" id="tag3" name="checkbox" onclick="toggleTag('tag3')"/>DialogProc</label><br/> <label><input ...
0
votes
3answers
92 views

DIV width to content of other DIVs, floating and centering all

I would like to achieve something that initialy looked simple to me but turned out to be not. My code is: <html> <head> <style> div { border-top: 1px solid black; margin: 10px; } ...
0
votes
0answers
10 views

Nested div with incorrect width

Is there any way of making the following display correctly. Currently the footer width is not the same as the content width. The footer overruns the width of the container. I know that if I make ...
1
vote
2answers
55 views

Prevent text from expanding shrink wrapped div

I have a holder div that's shrink wrapped around a couple other divs, so the holder doesn't have a set width. Also inside the holder is another div that contains text. When there's too much text it's ...
0
votes
1answer
42 views

.height/width of div returning different values into canvas

Above is a test website I'm trying out the new HTMl5 canvas tag. I've stripped it down a bit just to make the relevant code easier to locate. The issue I'm having is when setting the width and height ...
0
votes
3answers
54 views

Resize <div> automatically based on text?

I've got the following JS Fiddle to demonstrate what I'm trying to accomplish: http://jsfiddle.net/sVKU8/2/ 1) I assume this first part is easy - Is there a way to update the parent label class to ...
1
vote
1answer
33 views

DIVs surrounding image (Probably easy answer)

I have 3 divs in a header. dynamic width 55px wide with a background image 200px wide I'm trying to get the left div to fill the rest of the horizontal width, and I've read some answers already, ...
0
votes
1answer
57 views

Center two css divs with variable width in a div with fixed with

I am trying now since hours, nothing helps. Just simple: I have two divs with variable (dynamic) width. Both should be side by side in a wrapper div, that has a fixed width. Everything I try: I see ...
1
vote
1answer
46 views

Why does Chrome add a pixel to my Div

i have created a which is 1010px long with a 5px border around it making it's length 1020, however, when i inspect the div in chrome, despite the fact the code still says it's with is 1010px and it's ...
0
votes
1answer
140 views

How to set 100% div width in jquery cycle plugin

i have problem.. I must set width of slide div to 100%, max width of the "sklo" div.. See my codes below: $(function () { $('#sklo').cycle({ fx: 'scrollHorz', speed: 1000, ...
0
votes
1answer
128 views

How to Make Container Width Responsive to Floating Elements Inside

I'm a student making a website for my assignment and I'm working on a contact form as seen here: http://www.brightpixelstudios.co.uk/contact/ I'm trying to get the border surrounding the contact form ...
-1
votes
3answers
72 views

HTML Scaling div when width is set in percents

So I need to have a <div> in the middle of the screen when the user first opens the website, I've tried to set width in percents and putting <div>inside <center> tag, but in both ...
0
votes
2answers
38 views

Two HTML Issues: Width 100% not working and Divs not seperating from each other

I have two issues. First of all, in the portfolio section where the images are shown, the css property width: 100% is not working. Second, I have two DIVs that are, for some reason, stuck ...
0
votes
2answers
50 views

Fitting image size across screen resolutions

I have a div tag like <div id="MainMenu1" dojotype="dijit.layout.ContentPane"></div> This div is associated with a css like #MainMenu1 { height:53px; background: ...
0
votes
1answer
47 views

How do I get my <div> to stretch to the whole width of the screen? I tried width 100%

I'm tying to make a <div> that the width of it will stretch to the whole screen. Right now I have this in CSS: #spacer3 { width:100%; height:300px; } So I believe that it works. But on ...
0
votes
3answers
59 views

DIVs next to each other and prevent line breaks ( with css only)

I have 3 DIVs: 1. suiteBar, 2. ribbonMain, 3. ribbonSub I like to display the DIVs in the following way: DIV1 (suiteBar) : right (without a specific width) DIV2 (ribbonMain) : left in the same line ...
0
votes
3answers
105 views

Make width from child DIV larger than parent div with CSS

is it possible to make the 'width' from a child DIV larger than the 'width' from the parent DIV... (with css only) Please see the following example for more details: http://jsfiddle.net/6UFs4/ ...
0
votes
1answer
121 views

Jquery and Jqueryui: set width not working after using resizable?

I am writing a grid to show task durations. I have a set of divs in a display:block and when document is ready I use javascript and jqueryui to: 1) add child divs to the block divs 2) make the child ...
0
votes
1answer
41 views

Why this div is going down?

Could someone explain me why the four div in this snippet is going down whenever I specify to it a fixed width? It even goes down with a width of 1 px. If I keep the width in auto it correctly appears ...
0
votes
1answer
59 views

Middle div should get remaining width. Works in Firefox but not IE. Why?

I have a div containing 3 divs. The div to the left and right each have their width set to 200px and the middle div should get all the remaining width. This works fine in Firefox but not in IE8 and ...
1
vote
5answers
67 views

Set full width for the inner div

I have a parent div, Inside that div I have two levels of children div as follow, <div class="grandParant"> <div class="parant1">test</div> <div class="parant2"> ...
1
vote
1answer
76 views

Expand div width when other div is not there

I have a query. I am using 2divs in a main fixed width div. i.e. <div style="width:500px; border:red solid 1px; display:inline-block; font-family:Arial, Helvetica, sans-serif; ...
0
votes
0answers
134 views

Wordpress slider in a child div full width with proper scaling

This is all in Wordpress. So I have a parent div and inside that parent div are child divs. One of the child div is a carousel/slider. The carousel/slider only has a plain background colour for each ...
2
votes
2answers
370 views

div width 100% +10px: relative to parent?

I have a ul/li menu with display:table/table-cell:auto layout, stretched to fill the container and distribute horizontal space between menu items. I have to align an additional UI element to the last ...
0
votes
3answers
88 views

Filler width of an input element inside a floating div

I'm trying to organize an horizontal layout with divs of widths 40% - 30% - 30% in a container using float. Inside each div I want to insert plain text followed by an input field that fills the ...
0
votes
0answers
46 views

How do I create div left 100%, div middle fixed width, div right 100% for a header?

I need a header that is 100% width. It must contain a left and right divs of variable width and a center div of a fixed width (same as the wrapper I'm using). How can I achieve this?
-1
votes
2answers
41 views

HTML/CSS Mystery? Can't figure where the size is called up [closed]

I've been asked to try and modify a page for use elsewhere. Basically everything I've done apart from a single mystery which I cannot solve. The page I'm basing off is ...
5
votes
5answers
189 views

Align width of container div to the sum of floating div

I have the following html: <div class="main_container"> <div class="sub_container"> <div class="floating">wookie1</div> ... <div ...
0
votes
0answers
54 views

Full width child divs, multiple times down the page

So I have a design and it has multiple 100% browser width images down the page. I tried creating a few divs down the page and setting them to absolute position (even though the parent and following ...
0
votes
2answers
71 views

left float divs issue

I have two questions on left floating divs inside a parent div. I spent more than 5 hours on this tried different things, searched on internet, but could not find a solution! thought somebody here ...
1
vote
1answer
94 views

JqPlot graph too wide

I am using JqPlot and have a question about the width of the graph. Here is an image of the graph when displayed: The graph is just a little bit too wide. Can I please have some help to get it to ...
0
votes
2answers
83 views

Topdiv with 100% width but body width 600px

I'm trying to create a div (topbar) (width = 100%;). Below that I want my maincontent in a div with my maincontent. This needs to be 600px in width and centeret in the screen. Normally I would set ...
0
votes
3answers
73 views

Getting true width of a nested DIV using jQuery?

In my sample page: http://j25.wasen.net/modules/mod_simplefilelisterv2.0/index.html I have added a DIV as a wrapper at 200px wide. I use jQuery to try and detect the width of DIV's inside this DIV ...
0
votes
0answers
210 views

div bg image full width responsive (Wordpress)

I am trying to get a page broken into nice sections visually (horizontally) I want to make parts of the page a different background color or image, like so (visually): ...
1
vote
1answer
42 views

getting more vertical divs and separated footer

Since hours I'm trying to get what I posted on the image but I can't reach that... Why are those CSS so un-userfriendy? e.g. If the 2 divs in green are not the same lenght, my footer will be posted ...
0
votes
1answer
169 views

Get live width of div as window resizes?

Let's say I have a section, it's width is 1181 (as outputted in the console) and I am using the following code to find out the width of it: jQuery(document).ready(function() { var body_size = ...
0
votes
3answers
155 views

100% Browser Width Div Inside Smaller Div

I have a div of width: 1000px and inside that is a child which I wish to span the entire width of the browser window. The trouble is, I don't know how to override previous width inheritance. I could ...
0
votes
3answers
138 views

Php countdown, make the div change width for every day

Hey i have made a countdown, but what i want is a div that change width after the day. Let's say there is 150 days back to someday, then i want the div to be 150px in width. Is this possibel? I have ...

1 2 3 4 5