Questions tagged [sizing]

The operation of making appropriate scale according to size which can be dynamic.

Applicable in screen sizes (html) or load on server (load testing)

Please see other related tags: and .

234 questions
1
vote
3 answers

Qt4 Designer Preview Resizing

I have a derived QDialog dialog layed out the way I want, and resizing the way I want, with the problem that the preview starts out resized to a larger size than it should. In designer, the window is shrunk to the smallest size possible given the…
weevil
  • 11
  • 1
1
vote
1 answer

Submit button different height than the input field

I have a form with the following code using React in Javascript: import React from 'react'; import { FiSend } from 'react-icons/fi'; export default function SubscriptionForm() { return (
Kevin.a
  • 4,094
  • 8
  • 46
  • 82
1
vote
0 answers

Sizing images in a vertical pageview without compromising the space between each element?

Hello all I am having an issue with resizing an animated container in a pageview. If i resize the image I lose the amount of space in between and if I right a conditional statement to check if the container is an activePage if not higher the other…
1
vote
5 answers

How to fix the size of a Java heap

I know Java VM has "-XMx" and "-XMs" for setting the size of the heap. It also has a feature called "ergonomics", that can intelligently adjust the size of the heap. But, I have a problem at hand requiring the heap with strictly fixed size. Here is…
peng
  • 131
  • 2
  • 10
1
vote
1 answer

Using "dp" and "sp" in drawing

I'm trying to make a little app that has a little meter in it (think like a speedometer). Well, for the pointer (you know what I'm talking about), I want to make it an 1/8th of an inch thick, independent of the display size. How would I go about…
Benjamin
  • 1,223
  • 1
  • 13
  • 22
1
vote
1 answer

What should be Snowflake Warehouse Sizing

We decide to re-architect our product storage with snowflake to store our timeseries data. Currently we have 10 TB timeseries data(which increase daily) and 6 jobs which triggers after every 15 min interval and utilize almost 40GB/day data for…
Vijay
  • 11
  • 1
1
vote
1 answer

Hardware sizing

Basically I am looking for the guidelines for How to approach on hard ware sizing for a given requirements.what are the parameters need to consider to arrive at sizing decisons. It will be really great if any body can help on identifing sizing…
Mohan
1
vote
1 answer

I can't get my Header image to fit to the page content

I am coding a restaurant website's Home page for a desktop publishing class that I'm in, but I seem to be having some issues (well, multiple issues, but I will start with this one). I can't seem to figure out how to size the header that I exported…
Kris444
  • 11
  • 2
1
vote
0 answers

How to play multiple jwplayer players one one page side by side

I'm trying to create a page where I have multiple streams of video coming in from the web. Primary its news, Im making a page just to format the videos so they line up next to each other. I wanted to have a total of 3 videos on the top section and…
1
vote
1 answer

TinyMCE smaller in IE than in FF -?

I sized my tinyMCE boxes by using the cols and rows attributes of the textarea tag. There's a problem, though - they look how they should in FF 4 and they look very small in IE 8 - does anyone have a clue as to why this would happen?
linus72982
  • 1,418
  • 2
  • 16
  • 31
1
vote
4 answers

DIV floating and sizing problem

I have div sizing and floating problem. when I have tiny text it is OK: SEE IMAGE but look what happens when I have big text SEE IMAGE HTML:
1
vote
0 answers

How to stop boxes from colliding when minimizing screen

In my web design class, we're making our resumes from code. Mine is merely finished, I just don't understand how to stop my boxes from colliding and messing up the configuration when I minimize the screen (just go to…
1
vote
0 answers

CSS Grid element exceeds its container

Fellow magicians, hello! I am having trouble with one spell.. I am decorating a contacts section's form layout with CSS grid. I get the idea of fr unit that allows to stay within the box even with gaps applied, but I must be missing something in…
1
vote
1 answer

Change width without changing other elements in flex

I am making a website. In my HTML file, I have a div displayed as a flexbox. It's a horizontal div with 7 elements ('cards' with an image and a title). On hover, I want the element to increase width. When I do that it works but the other elements in…
1
vote
2 answers

JTextArea - very small size with long text

I'm using a JTextArea to display a long text JTextArea _definition = new JTextArea(5, 50); with word-wrap _definition.setLineWrap(true); _definition.setWrapStyleWord(true); embedded in a JScrollPane add(new JScrollPane(_definition), gbc); All…
Thorsten
  • 12,921
  • 17
  • 60
  • 79