Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
33answers
3k views

While coding, how many columns do you format for?

in the old days everything was 80 columns. so if you wanted your code to be readable, you'd make it fit. but that's not the case anymore with wider and wider screens, so how long of line is too ...
15
votes
7answers
18k views

Custom margin settings for figure in LaTeX

I have a fairly large figure in a LaTeX document. This figure is too large for the left and right margin of the document. This results in the figure being placed flush with the left margin, and way ...
13
votes
7answers
4k views

How to set a top margin only in XAML?

I can set margins individually in code but how do I do it in XAML, e.g. how do I do this: PSEUDO-CODE: <StackPanel Margin.Top="{Binding TopMargin}">
8
votes
4answers
46k views

jQuery Screen Resolution Height Adjustment

In order to better balance out a page I am working on I would like to find a way to increase the top margin of a DIV depending on the screen resolution. What is my best way to set these dimensions ...
7
votes
3answers
4k views

LaTeX book class: Twosided document with wrong margins

I am trying to write my thesis in latex... Cannot get the layout straight though :? I'm using the following document class: \documentclass[11pt,a4paper,twoside,openright]{book} My problem is: on ...
5
votes
2answers
463 views

Vertical negative margin not working in IE8?

first time asking my own question here :) I'm working on a website and I tried extending it vertically to the bottom of the client window using the usual trick: html, body { height: 100%; } ...
3
votes
4answers
2k views

CSS Margins Overlap Problem

Please see my code, I don't understand why the margins of these divs are overlapping. <div class="alignright"> <div class="social"> <a href="#" class="twit"></a> ...
3
votes
2answers
1k views

To use layout_marginLeft in a button style applied as a theme?

I used an attribute layout_marginLeft="30dip" in a style defined for buttons. When I apply this style individually for each button, the left margin is placed as I wanted. But then I defined a theme, ...
3
votes
2answers
3k views

ie7 and ie8 ignore “margin:0px auto;”

http://blog.helpcurenow.org I'm working on the development of this blog and it seems ie7 and ie8 both are displaying the content so that the container seems to be ignoring the "margin:0px auto;" ...
2
votes
1answer
43 views

How do I Make this jQuery Animation function work from Bottom-to-Top?

I've tried editing the JS for the animation function in Zoomer.js, here's the code: ...
2
votes
2answers
98 views

How to split html to full-screen height pages?

I need to split some html content to pages, so that each page would have height of the screen and some predefined width. Page split can happen in the middle of paragraph (or probably some other html ...
2
votes
2answers
33 views

Item with margin-top has margin outside of containing box

I have something to this effect: #div { background: green; width: 200px; height: 100px; } h1 { margin-top: 100px; } (And obviously there is some HTML to go with it.) Now when viewed ...
2
votes
2answers
397 views

R: calculating margins or row & col sums for a data frame

I have a data frame that looks like this: Flag1 Flag2 Type1 Type2 Type3 1 A FIRST 2 0 0 2 A SECOND 1 9 ...
2
votes
2answers
378 views

Remove right margin on every fourth VISIBLE element using jQuery?

I have successfully used the jQuery :nth-child() selector to remove the right margin from every fourth element in a long list of div's. It looks like this: ...
2
votes
2answers
233 views

Margin of html element defaulting to fill width of containing div, cannot override

I'm a fairly novice web developer and I'm having a very fundamental problem that I would really appreciate some help with: No matter what width I set any elements within a certain containing div, ...
2
votes
1answer
602 views

CSS page headers - how to use print margins?

I can get a header to print on each page, but I'm new to print margins. I thought the @page css would work, but it does not seem to affect page margins. If I set the margins on the body, it works on ...
2
votes
2answers
160 views

moving text div tags individually

I am trying to move text next to my header, but it is not working using margins - when i try to move it all the text boxes move, even though each text box is a seperate div tag. Here is my code for ...
2
votes
1answer
276 views

How do I get hold of the margins of the Paper when using java printing?

I'm trying to print a JPanel with some painted graphics on it (overriding paintComponent). The graphics is so big that they wont fit on a single page and therefor I'm letting it span across multiple ...
2
votes
6answers
731 views

Swing GUI components too tighly packed

In the Java Swing app I made it seems to me that all the component are too tightly packed. In QT one can specify padding and margins for the layout. Is there something similar for swing? Here is ...
2
votes
3answers
249 views

CSS margin strange behavior, why?

Having the HTML below <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
2
votes
2answers
333 views

Color margins in VIM

Does anybody know how I can get diff's color margins in VIM (if it is possible)? I mean something like this: (e.g., in NetBeans: Netbeans color margins). It was very useful when I was working with ...
2
votes
3answers
198 views

Information on how to use margins

I need some info on how to use margins and how exactly "padding" works: For example: should I put a line to occupate the whole width of the page (no matter what resolution is used to display the web ...
1
vote
1answer
82 views

margin-top set through jQuery in IE8 not updating

I'm using a jQuery code to set a div in a calculated position using margin-top (and not top) which works perfectly in all browsers except IE8. (it does work in IE6 and IE7). I narrowed down the ...
1
vote
1answer
32 views

Setting margins by right and top values only

This problem is related to positioning objects on the screen. I have a dynamic creation of framelayout with layout params as given below FrameLayout fl=new FrameLayout(getApplicationContext()); ...
1
vote
2answers
38 views

Where is this extra space between divs coming from?

http://www.lethalmonk6.byethost24.com/index.html If you inspect with firebug the spacing between the "project-link" divs, there are a few pixels of added margin between each div. I have the margin ...
1
vote
1answer
29 views

Get the margins defined by a printer in html, php or javascript

I am doing a project which requires to have a 20mm white area around a print page, with a 10mm border within that. I have these set up using <div>s and everything looks fine on the HTML page - ...
1
vote
1answer
30 views

Why is there a margin on these links? CSS

Here's the JSFiddle: http://jsfiddle.net/bozdoz/k2enx/ Margin for #topLinks a is set to 0, so I don't see why there is a space between the links. I set the background to red so you can see the ...
1
vote
1answer
68 views

Margin width toggle in Emacs?

I'm using the following snippet to set a 1-character margin to both edges of an Emacs buffer (thanks to zev!): (add-hook 'window-configuration-change-hook (lambda () (set-window-margins ...
1
vote
1answer
60 views

jQuery tabs style right indenting loaded content

jQuery tabs are adding a margin of about 25px to the left of my loaded content. this seems to be a default behavior, as the space on my page looks similar to the space on the ui example site. any ...
1
vote
2answers
50 views

CSS margin pushing the body element

I'm setting a margin for a div element, however the body element also gets that margin. Consider this code: <!-- HTML --> <body> <div> </div> </body> <!-- CSS ...
1
vote
2answers
103 views

trying to use a negative margin in css on a list

I have been trying for an hour to get a list in a sidebar of WordPress to have a negative margin. Fooled around with margins, padding, sidebar placement in the php files... But the link images just ...
1
vote
1answer
102 views

Center a div vertically

I have to center a div vertically, with only a margin above and below. So I made it generate the margin with JavaScript, like this. var xLength = ...
1
vote
1answer
166 views

Changing margins at runtime

I'm trying to change the position of some TextViews in a FrameLayout by changing their margins at runtime using MarginLayoutParams newMarginParams = new MarginLayoutParams(view.getLayoutParams()); ...
1
vote
1answer
109 views

marginal total in tables

I have a data frame with a number of infections identified from clinical isolates at different dates. So far I have organised the data into a shape that I want to start working with. I am trying to ...
1
vote
2answers
56 views

Where is this rogue white-space coming from?

This is a screenshot from Opera using FireFly. It clearly illustrates the padding (5px) and margin (0px) of the textbox. However, to the right of the textbox is an unidentified black space of ...
1
vote
1answer
203 views

Change print margins using CSS in IE6?

I've got a HTML document generated using by PHP (can't use the COM object due to Office not being supported on the server!) that for the most part prints fine, especially in Firefox... the problem is ...
1
vote
2answers
61 views

Internet Explorer issue

This site has an issue with the center content portion. For some reason in internet explorer just a couple of letters are being cut off by the sidebar. I have no idea why, or how to fix it. The div ...
1
vote
5answers
67 views

setting horizontal and verical margins

What is the method to set horizontal and vertical margins in a panel? (The same we have in html style="margins:30px")
1
vote
4answers
480 views

CSS: Margin problem with Safari

On the site I'm working on, for some reason the margin is needing to be different for Safari than in FF, IE8, Chrome & Opera? I have a link that I want lined up next to a label. It's lining up ...
1
vote
2answers
1k views

Java: remove margin / padding on a JTabbedPane

I'd like to know how to remove the margins between my JtabbedPane and my JFrame content pane and between my JTabbedPane and its internal JPanel. I circled the margins I want to remove. the green line ...
1
vote
1answer
298 views

Latex: Different pages with different margins

I'm making a latex template for a document type to use at work. For that document, I have two different "commands" one to make the title page; and other to make the rest of the document. The margins ...
1
vote
1answer
2k views

UILabel: adjusting margins to match a UITextView

I have a UILabel and if i adjust the size of the text i can make it look loke a UITextView however the left margin is different, on the UIlabel the text is right up against the left border where the ...
1
vote
3answers
1k views

Is it possible to have a SeekBar's thumb image extend outside the bar?

I have set negative paddings on my custom seekbar so that the round thumb image can go outside the bar, but the thumb isn't rendered out there, is there anyway to force the thumb to be drawn outside ...
1
vote
1answer
381 views

Setting page margins in Rave Reports

I am using Rave Report to print my reports in Delphi. Is there a way i can set the page margins(left, right, top and bottom) for printing my reports? please help me....
1
vote
2answers
713 views

Extra padding or margin coming from where?

October Landing Page I'm having a couple issues on a page I'm developing. In the page above you'll see three boxes toward the bottom of the page - two are the same format and the third has it's own ...
1
vote
4answers
211 views

Dealing with the “double margin” problem between GUI elements

While creating GUIs I've come across the "double margin" problem several times, where two elements have the same margin defined and end up being spaced twice as far apart as I intended. One solution ...
1
vote
2answers
2k views

How to set margins 0 on print preview?

Where am i doing wrong? This is the normal print preview: But I want to see this picture (without dragging margin arrows) This is the css codes and preview:
1
vote
5answers
6k views

Abstract margins in LaTeX

I'm new to LaTeX and I've got a \begin{abstract} ... \end{abstract} section and I want to change the margins so the text looks more condensed and centred on the page. I need some code that will do ...
1
vote
4answers
2k views

How can I completely remove the Margin of textboxes in HTML/css

I have the following HTML <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> <style> .box { border:solid black ...
1
vote
3answers
558 views

Yui, how to remove the margins for a 2 column layout?

I want the 2 columns to touch ie. remove the margins, how can I do this? My code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> ...

1 2 3