In GUI (inc. web page) context, alignment refers to the positioning of visual elements. In programming context, alignment is the placement of objects on memory addresses, usually a multiple of some small factor.
0
votes
2answers
64 views
Images and h1 tag displayed on the same line CSS
Having problems displaying two images and one h1 tag on the same line. I want to align one image to the left and the last two elements on the right. Any tips on how to do that?
HTML
<div ...
4
votes
2answers
138 views
CSS Table-Like alignment using no tables? (CSS RelativeLayout)
Wherever I go on the internet, I am constantly having it beat into me that I should not use Tables. Sadly, I am one of the few programmers who is stubborn enough to still be using them -- I frankly ...
0
votes
2answers
44 views
CSS align 2 img with links and form
Hi I'm creating a menu in html with 1000px that has 2 images, one on the left and other on the right sides of the menu with 40px height, also has a group of links on the left and a search form on the ...
2
votes
1answer
41 views
Variable alignement with Cortex-M0 under GCC
I'm trying to find a good way to align variables on a bondary of 32 bits or 16 bits with GCC.
I'm working on a Cortex-M0 that doesn't support the missaligned data acess. I have this problem when I ...
0
votes
2answers
31 views
Android manage relative layout alignment
I designed one layout with 3 button, I want to manage separator's alignment. here my xml layout ,
<RelativeLayout
android:id="@+id/menuLayout1"
...
0
votes
1answer
109 views
iText unicode font issue
I have been working with ttf font in java using itext (lowagie) sdk. I would like to explain my problem by example.
I have a table row where I want to show some text ( bengali ttf). The text is ...
0
votes
2answers
51 views
Horizontally centering elements inside a div
To make this easy, say you had a div that was 100px wide, and 3 divs inside of it each 20px wide. How can I align them to where they align to the center of the div leaving a 20px; gap on each side?
0
votes
1answer
46 views
Displaying images horizontally CSS
Imhaving a bit of difficulty with CSS styling on my website, Currently I have a row of images that I'd like to align horizontally along my page. But just now it displays them all vertically in a row ...
0
votes
2answers
49 views
Regarding text-align
been working on a site recently and wanted to adjust it so that it would have the picture followed by text to the right giving a brief description.
<script type="text/javascript">
function ...
0
votes
0answers
13 views
what's the usage of function alignment?
I read Function Attributes chapter in GNU manual.
There is aligned (alignment), I know variable aligned, but what's the meaning and usage of alignment of function?
Could someone give me some help or ...
0
votes
1answer
36 views
Customizing left and right UIBarButtonItem's - alignment
I add custom left bar button item (just an image, with frame the size of the image itself) like that:
UIImage * leftbuttonImage = [UIImage imageNamed:@"a_but_back.png"];
UIButton *button = ...
0
votes
4answers
39 views
Alignment of Buttons with AdView
I have a Layout for Android app with few buttons in it. I am trying to set an Ad at the bottom of the page. Please refer to my layout below:
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
97 views
How i can find selected image in web Browser in C#?
i have a web browser that it's edit mode is on and sum users work with it.
users can insert image but not with UI of web browser control but they select an image from a form and i insert them by code ...
0
votes
1answer
47 views
Alignment after array member of same type
In the common situation of a struct/class there may be alignment padding between members. But I am wondering whether it would be safe to assume that this special case:
template<typename T, size_t ...
1
vote
3answers
74 views
Android align set of buttons programatically in layout
the thing which I want to achieve in my application is to create dynamically a set of buttons with different text size and after that align these view inside a linear layout. Here is a sample of what ...
0
votes
3answers
54 views
Align printf output in Java
I need to display a list of items with their prices from an array and would like to align the prices. I almost have it working but needs improvements. Below is the code and the output. Any ideas how ...
0
votes
2answers
33 views
css: how to align left last line/row of content
I have div with centered content - an images, but the problem is that last line is also centered and it broke the "grid effect"
<div class="wrapper">
<div class="iB"></div>
...
-1
votes
1answer
61 views
HTML text aligning
Okay, let me introduce the problem:
I'm trying to style prices to be displayed similar to this example: $XXxx. I'm trying to use inline styles only to make it usable in HTML emails.
This is what I ...
0
votes
1answer
33 views
alignment issues btn calendar and grid
Inside a panel I have an asp calendar and an asp detailsView. Im trying to get them to display along side each other but cant get the alignment correct. I would like the the calendar top left, and the ...
0
votes
1answer
83 views
Is it possible to horizontally center align a row of bootstrap spans that don't add up to 12?
<div class="row">
<div class="span4"></div>
<div class="span4"></div>
</div>
I understand that you need 12 spans in total. Is there a way to still center ...
0
votes
0answers
57 views
iOS UITableView: Align labels of a custom UITableViewCell when editing
I have an UITableView with several prototype cells and some of the editable cells are basic cells and some customs.
(XCode 4.6.1 / iOS 6.1)
My question is how to automatically align the labels of ...
1
vote
0answers
65 views
GridBagLayout - All components to top left
How is it possible in the following GridBagLayout Code, to set alle components realtive to the top left corner. Now the components are always centered and it doesn't look that nice. I searched in many ...
1
vote
4answers
52 views
How do I create 3 equal sized boxes side-by-side?
Let's say I have a container with with the following specs:
.container {
width: 960px;
margin: 0 auto;
height: 500px;
}
Now in the middle I would like to add the 3 boxes aligned next to each ...
1
vote
1answer
44 views
Text Wrap around an image
Currently in my code my image appears like this (bottom right) - How would I make it apear top right with the text wrapped around the image by using CSS:
HTML:
<div ...
0
votes
1answer
49 views
Is there a way to align an element to its 'grandparent' without jQuery/javascript?
I need to align an element to the edge of its 'grandparent'.
Here's an example of the code:
<div id='grandparent'>
<div class='parent' style='display:inline-block'>
<div ...
0
votes
0answers
27 views
Wrap text around iframe (embedded YouTube video)
I feel stupid for asking, but by now I tried everything and it just doesn't work.
This is my test-site: www.mot-art.comze.com. I just want the text under the videos (Extra --> Motorfilmpjes) to be ...
7
votes
5answers
133 views
Is the compiler allowed to optimize the stack memory usage by reordering local variables?
Consider the following program:
#include <stdio.h>
void some_func(char*, int*, char*);
void stack_alignment(void) {
char a = '-';
int i = 1337;
char b = '+';
some_func(&a, ...
0
votes
0answers
46 views
Button messagebox Extjs 3. left align in IE7
I used ExtJs 3 to display a messagebox. But the button is left align in IE 7. It show normal in Firefox and IE 9.
http://i.stack.imgur.com/DwLFd.png
Please help me, thank
1
vote
2answers
41 views
centering div horizontally
My page layout:
div for header : position: fixed
div for sidebar: float: left div for content: float:left
div for footer : position: fixed
the positions are set to be like so so that ...
0
votes
3answers
186 views
Setting two <divs> next to each other horizontally
I'm trying to set two next to each other. I tried code from this question: CSS two divs next to each other but nothing works.
This is my code
profile.css:
#content {
width: 100%;
}
...
2
votes
2answers
66 views
Align: How to trim spaces from block selection to start of text?
I often find myself left aligning text within other text.
I know there are plugins to align columns but within a lot of other text it is not the easiest way.
This is my text:
>...this is text ...
0
votes
3answers
35 views
Right aligning a div
I am trying to align a div to the right but its only showing towards the bottom.
Issue
CSS:
.homeWrapper{
padding: 12px;
width:auto;
}
.content_inner{
height: auto;
...
1
vote
1answer
38 views
How to get proper alignment in simple python table?
I'm new to python and my problem seems to be so stupid I can't even find an answer when I google it...
I'm writing a program that uses data on different planets and their satellites, makes some ...
0
votes
3answers
36 views
Div Alignment not going top
I am having an issue with my homeWrapperContentRight I cannot get it to align next to my homeWrapperContentLeft. Is there any advice that I am missing when I do this?
Live Url
CSS:
...
-2
votes
2answers
57 views
Making website better [closed]
I am working on a UI design. I have good CSS/HTML knowledge. But not good in UX.
Attached image is the UI I created for one page.
I tried alter it nearly 10 ways, still my customer says it looks ...
0
votes
1answer
38 views
Div not aligning
I am having trouble with the below CSS I cannot seem to get the white box to align next to the brands box:
Live URL
HTML:
<div class="homeWrapper">
<div ...
0
votes
2answers
76 views
How to set non-natural alignment of a .NET struct?
I'm doing interop with some native library, which has some non-natural alignment feature which I want to simulate in .NET struct for the layout. Check these two structs:
public struct Int3
{
...
0
votes
1answer
48 views
Margin Auto Need to be centered
This is my code Im trying to get it centered in the middle of the page
<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/bootstrap.min.css" rel="stylesheet" ...
0
votes
0answers
40 views
Align the center of a div to a relative position?
I'm trying to align the center of a div to a relative position. I have a div sitting below a div whose right edge will always be at 35%. I would like the center of the div below it to always fall at ...
2
votes
3answers
69 views
Center text vertically next to a one row textarea?
I want the text that sits next to a one row textarea to be centered vertically with the textarea.
This is the default behavior if I put text next to an input of type="text".
Id like to stick with ...
10
votes
1answer
160 views
C++ alignment - strict and weak
I'm reading N3485 C++ Standard Draft and in the section on alignment, it states the following:
3.11 Alignment [basic.align]
1 ...
An alignment is an implementation-defined integer value ...
0
votes
1answer
29 views
WPF Equivalent to Flex VGroup
What is WPF equivalent to Flex VGroup?
My Intent is to have a vertical list of checkboxes
Flex declaration would look like this
<s:VGroup>
<s:CheckBox label="Item 1" />
<s:CheckBox ...
0
votes
1answer
57 views
How do you get a WPF TextBox to overflow to the left and stay that way without messing up your arrow key behavior?
I have a text box that is only 10 characters wide. I need to put 20 characters in it, but only need to show the last 10 characters. I need to force the TextBox to always overflow the text to the ...
1
vote
3answers
118 views
Align two imageView with textView XML in android
I have a problem with my xml for android.
I have this layout to use it in each line of a Listview (that works fine).
I want to put two lines (head and body) of text, and align Right of the first line ...
1
vote
1answer
46 views
Auto adjust alignment to screen size
I am working on a BlackBerry App that has a lot of ImageButtons, LabelFields and MessageBoxes. What appears to be perfect on one screen size, seems a mess on the other. For instance, Vertical Field ...
-1
votes
2answers
64 views
HTML/CSS: How to get some text to align on right and other text on left on same line of table cell
I am trying to get some text to align on left and other text to align on right in table cell for mobile site without success. Would greatly appreciate any suggestions:
html:
Following code with ...
0
votes
1answer
85 views
Python Fully justifying string
Does anyone have a nice concise way of fully justifying a string for a given line width like this:
The cat sat on the mat, the cat
sat on the mat, the cat sat on
mat, the cat sat on the mat the
mat, ...
9
votes
3answers
309 views
where can I use alignas() in C++11
In an effort to standardize my code and make it more portable, I replaced
#ifdef __GNUC__
typedef __attribute__((aligned(16))) float aligned_block[4];
#else
typedef __declspec(align(16)) float ...
0
votes
4answers
137 views
text-align not working in FF and chrome
I have an asp page where I am trying to align in center. The following is the specific line,
<td style="height: 50px; background-color: #ffffe0; text-align: center; ">
This code is working ...
0
votes
2answers
118 views
vertically aligning a label against a textbox
I have an asp.net webpage - In it I have an asp text-box and beside it to the right an asp label.
The font size of the label is small so the height is much smaller than the text-box.
I would like the ...



