gap

How to compute simplified Groebner basis in GAP script

I tried to use Buchberger's Algorithm(see also: http://en.wikipedia.org/wiki/Buchberger%27s%5FAlgorithm and http://www.geocities.com/famancin/buchberger.html) to compute a Groebner basis for an ideal in rational field, here is my GAP script: F := Rationals; R := PolynomialRing( F, [ "x", "y", "z" ]); x := IndeterminatesOfPolynomialRing(...

Css fluid layout

Hi, Im trying to replicate this layout with html/css: http://reformrevolution.com/ I think im getting close to what I need, but I cant seem able to get rid of the vertical space between divs, wich should be equal to the horizontal gap, and I believe the divs are not "going down" in the right order. Here is the code: <body> <div cla...

Why, when I center an image in a div with line-height, does a 3px gap appear at the top?

Have a look at this page. The images on the right should be centered within their divs. But if you look closely, there's a small border of around 3 pixels at the top. And if you disable the overflow: hidden (through firebug or the IE8 equivalent), it sticks out the bottom. The HTML is this: <div class="small"> <img src="/images/pho...

WPF tab control spacing between headers

The default behavior of the WPF Tabcontrol is to place the Tab Headers adjacent to each other, without any empty space in between. What if I wanted to specify a gap between the headers? Do I have to define a control template for this? I'm relatively new to WFP and any help is appreciated. Thanks ...

Remove gap in wordpress posts in IE

I'm using a modified version of Modern Clix by Rodrigo Galindez on my website, and I've encountered a problem with gaps on top of every one of my posts in IE. The gap is the size of my left-hand sidebar and doesn't appear in firefox. Ex.: http://martiningolf.dk/?page%5Fid=273 If anyone knows how to solve this problem, It'd make me hap...

Pixel gap in ie

Hi there, I have four Div placed using absolute positioning, each of them is a border of a rectangle they form once grouped together, in order to look like if a Dom element on the page is selected (this mimic the css border behavior using Div as overlays). The left one has a border left set to "4px solid red", a width of 0px and a hei...

Create barchart using jfreechart with bars of same category together

I want to make bar chart using jfreechart such that the bars which belong to the same category should be displayed adjacent without any gaps. The categories should be displayed with gaps. Also each category may have different number of bars. How it can be achived using Jfreechart library? Following image is the sample of what I require....

UltraWebMenu gap between main menu and submenus.

Hi, I have an UltraWebMenu, which has main menus...and submenus for each main menu. when the vertical scrollbar of browser(IE)..is at the top..the submenus comes directly under the main menu,. But, If i moved the vertical scroll bar down...and click main menu (to see the submenu), i am able to see huge gap between main menu and submen...

gap between LI's on drop down menu in IE

Hi I ave a drop down menu which when dropped, there is a gap between the li's. I have tried all usual methods but I cant seem to find where it is coming from! I would paste the code but there is a bit of it so I have set up a temp directory for you to see. http://www.actwebdesigns.com/web-design-mansfield/ Regards, Phil ...

What's up with IE this time? - Floats the entire content to the left and adds a gap in the menu.

You build it for FF, then you hack it for IE. Take a look here: http://jbhstad.se/NicklasSandell/ Anyone knows what's up with IE? The menu seems to have a gap between for some reason, and the entire site is floated left? Thanks in advance, -Nike ...

CSS gaps between image links for no reason

Hi, I've been trying to get this horizontal navigation sorted for the past few hours now and nothing is working. I've tried reset.css stylesheets, *{padding: 0; margin: 0) etc. and I still have gaps inbetween my image links. You see, the navigation is made up of an unordered list of image links displayed inline, but there are gaps in b...

how to get scrollable html table in phonegap application

I want to scroll html table in phonegap application ,i tried using div tag but it does not work in phone gap but same code work in safari browser ...

Floating Tables Problem Unwanted Space XHTML Strict

Hi I have two floating tables side by side. One is set to float left, the other one is set to float right. The problem is when two table are floating, they both are out of flow so next table comes without any spacing. So I add a width attribute clear:both. But now it gave me a lot of unwanted space! it's height set to:0 (the div's) and...

Printing large integers to file in GAP without linebreaks

In GAP (http://www.gap-system.org/), I want to print large numbers to files without line breaks (to match the format for the b-files at Sloane's encyclopedia, for example: b000186.txt). However, if I use AppendTo("<filename>",n," ",f(n),"\n"); when f(n) is a large number, it adds linebreaks, which I don't want. Is there an easy way to ...

Marquee without Space

Hello, I have a marquee that is scrolling upwards. <marquee scrollamount="2" scrolldelay="0" direction="up"> Element One<br/> Element Two<br/> ... Element Five Hundred and Thrty-Seven <!-- ;) --> </marquee> Now, what I want, is to achieve that, when the elements end, there is no space until the last element is no longer displayed, b...

How can i calculate time duration between sunrise and sunset?

Hello friends My question is How can i calculate time duration between sunrise and sunset? Then how can i divide this duration(sunrise to sunset) into 8 equal parts(Hr: Min)? All i need is starting and ending time of every part. And i want to write this code in VB.NET because in VB.NET i can easily design the GUI. Thanks ...

Space between div and img?

Hello, I have code like this: <div id="sc"> <h1>1. Orange</h1> <p>some text in here </p> </div> <img class="separator" src="images/separator.png" /> There's ALWAYS 13px gap between the "sc" div and "separator" img. Margins and paddings for bo...