Extra space inserted into memory structures to achieve address alignment -or- extra space between the frame and the content of an HTML element.
0
votes
0answers
14 views
Padding Differs Between Computers Chrome
On my top menu padding, the links extend down to the underline on my background image on my computer on Chrome. However, on other computers it's a wildcard if it will or not.
Is this due to font ...
-1
votes
1answer
67 views
Padding arrays in C++ without translating indices
Here is what I have:
int t[MX];
Now, I'd like to rewrite that code so as to effectively add a single element to the beginning of that array, without having to translate all of the indexing by 1 in ...
-1
votes
1answer
29 views
Left and right padding isn't working
I've been looking for an answer for two hours.
.liteAccordion .slide > div {height: 100%; position: absolute; top: 0;
z-index: 10; overflow: hidden; background:
white;color:black;padding:25px;}
...
0
votes
0answers
32 views
padding from left and right dont work
i'm looking for an answer already 2 hours..
.liteAccordion .slide > div {height: 100%; position: absolute; top: 0;
z-index: 10; overflow: hidden; background:
white;color:black;padding:25px;}
...
0
votes
3answers
27 views
Add margin top or padding top to a series of display inline div tags
I'm trying to set my example code so that the second row isn't so cramped at the top. I cannot split these into 2 rows so I need a way to add some kind of padding to the top of each div so there is a ...
0
votes
2answers
21 views
How to reduce minimum top-padding?
I'm trying to copy the Facebook's notification's blobs by using CSS3 ::before pseudo-element. I added a maximum height value and everything I tried isn't enough to reduce the space between the number ...
0
votes
2answers
28 views
a width and height 100% and text still at the bottom right - possible?
I'm creating tiled nav and what I need is for a to fill the tile, but the text from a still be located at bottom right position. However, when I make it width:100% and height:100% (in relation to li), ...
0
votes
1answer
13 views
Margin issue while viewing in mobile
I have corrected all of my pages so that they look good while viewing in mobile (iphone) but I have one page that didn't turn out well.
This is the page I am looking to fix up so that the images are ...
0
votes
1answer
12 views
Embedded padding/margin in fonts
It seems that all fonts have some sort of embedded padding or margin. By setting:
margin: 0px;
padding: 0px;
You never get what you want. Does anybody know why this is?
1
vote
1answer
26 views
Applying padding to custom button
I'm trying to make mu custom button with no padding. For that purpose I created following selector:
<?xml version="1.0" encoding="utf-8"?>
<selector
...
0
votes
1answer
30 views
css @font-face doesn't align text vertically across all browsers
I must have went through every page of google but haven't found the solution yet. I have a custom font that I'm using through css font-face. The font adds extra padding on the bottom depending on the ...
0
votes
2answers
28 views
padding issue in Firefox
http://www.pcdconsultancy.co.uk/
Im having trouble with my menu. It appears to have at least a couple of pixels bigger on Firefox than IE or chrome, can someone advise me what the appears to be? ive ...
0
votes
1answer
29 views
bash - padding find results
I'm running the following command to get a directory listing:
find ./../ \
-type f -newer ./lastsearchstamp -path . -prune -name '*.txt' -o -name '*.log' \
| awk -F/ '{print $NF " ...
0
votes
1answer
21 views
Padding issues while viewing website with mobile device
Can someone take a look at my website and help me fix the mobile display. More specifically setting up and fixing the padding and margins.. When i view the website on my Iphone its a mess.
Would ...
0
votes
2answers
25 views
why does printf space padding only allows one space?
This is my code:
<?php
$str1 = "Hello";
printf("[%99s]",$str1);
?>
I expect it to output 94 spaces as padding to fulfill the min length. Why does it only output 1 space to the right of the ...
0
votes
2answers
46 views
remove all padding and margin table html css
I have this table :
<body>
<table id="page" >
<tr id="header" >
<td colspan="2" id="tdheader" >je suis</td>
</tr>
<tr>
...
0
votes
0answers
25 views
setPadding - bottom padding not working properly
Guys I am extending a Progress Bar, and I am changing the height of the progress bar and setting it padding. Everything is working fine except BOTTOM padding. The issue is when i am trying following ...
0
votes
1answer
18 views
how to reduce padding when embedding highcharts?
I'm having trouble embedding a highcharts pie chart in an html document. Specifically, I can't resize the chart's container without changing the size of the chart. Does anyone know if you can reduce ...
0
votes
0answers
7 views
Unwanted Div Bottom Padding
There is padding at the bottom of a div that I cannot seem to remove. The page is http://www.vheindustrial.com/company.html. Here is the html with text removed.
<!-- content -->
...
0
votes
0answers
44 views
Extjs button href with padding
I want to create ExtJS button with href and padding, when the padding also connected to the same href target.
This code:
Ext.create('Ext.Button', {
text: 'Go to google',
padding:'50 50 50 ...
0
votes
2answers
41 views
css padding an image inside a listitem (navigation bar)
I have an image displayed for every listitem on my navigation bar, the problem is I cannot use padding left by 10px, my browser would think that the listitems need the padding left instead of my ...
0
votes
1answer
63 views
How to set padding for gridview data with C#?
I have populated a gridview with C#, but the data in the girdview is very close to the cell borders. How can I take away the padding for the cell content with C#?
string query = "SELECT * FROM ...
1
vote
0answers
26 views
Extra padding on photo and photoset posts on tumblr
I'm working on my first tumblr theme, and I cannot figure out what's wrong. For some reason, all of my photo and photoset posts have 3 extra pixels beneath the photo/photoset. But all of the other ...
0
votes
2answers
36 views
llittle endianness of a structure in a structure
Given a hypothetical structure
struct OUTER {
uint_16 x;
struct INNER{
uint_16 y;
uint_16 z;
} inner_struct;
} outer_struct;
and a little endian machine, how would the bytes be ...
2
votes
0answers
39 views
Change Padding in Selector drawable
i am trying to change the padding from a Button in a custom drawable ressource, and reuse this in a selector.
Changing the drawable seems not the Problem, but the App always use the highest padding ...
1
vote
1answer
18 views
32pt text adds unwanted padding
When I add the 36px "Announcement" text to the <div> below, it adds a ton of padding around just the text that is 36px and I cannot get rid of it. I did some research and tried changing the ...
2
votes
3answers
64 views
Why is there 8 byte padding of “0xcc” between aligned ints on the stack? C++ 32 bit Windows 7
int p;
int i1;
int i2;
i1 = 1 << 16;
i2 = 1 << 8;
p = int(&i1)+3;
cout << hex;
cout << "&i1: " << int(&i1) << endl;
cout << "&i2: " << ...
1
vote
2answers
58 views
Textarea does not respond well to padding
So I was trying to align a textarea inside of a div using the padding property:
#content {
background: #FFFFFF;
width: 80%;
height: 800px;
margin: 4em auto;
padding: 20px;
...
1
vote
1answer
52 views
Hide a 1px margin when displaying a png
I am receiving nine-patch images from a server to display in the ui of my android app. This is a hard requirement so I am unable to compile the nine-patches into the APK. It appears that Android ...
0
votes
1answer
53 views
OpenSSL RSA signature and PKCS#1 padding incorrect verification
I am generating an RSA signature of some data, using SHA-1 as the hash function, and PKCS#1 padding as the padding scheme, from a program in C++ interfacing with a smart card reader successfully. I ...
0
votes
1answer
19 views
Mobile padding issue
I have inserted some spacing between the map and the "Used By Thousands Of Canadians" in the middle of my website, which it looks like I have room for. But when I do this and view the website on my ...
0
votes
1answer
42 views
Crazy exception at AES Decryption - BadPaddingException
I'm having some trouble here while trying to decode some encrypted text.
CheckpswdBasedKey is always returning false, because of the BadPaddingException at c.doFInal
I'm using AES, basicaly the ...
0
votes
2answers
32 views
Header Wrapper has a gap below header inner
I have 2 divs on my page(under construction).
One is the header_Wrapper which is page width(100%) and header_inner(width: 980px)
I added a navigation bar and now there is a gap(it looks like padding ...
0
votes
3answers
47 views
Css padding not working properly
I'm working in the main page of www.recaccesorios.com and I'm struggling with a padding. The vertical distance between two elements is too big and I don't know why is doing that. I'll show you the ...
1
vote
2answers
36 views
CSS top-and-bottom padding: split evenly within fixed-height border
I've been asked to put a certificate online, that users can then print out. Everything's good to go except I'm having trouble centering everything vertically.
I have on div that holds the border ...
0
votes
1answer
40 views
Menu goes through H2 on browser resizing
I've got a header with an h2 and a menu. The menu should always stay on the right in every resolution. But when I resize my window (to change the resolution) the menu goes right through the H2. Any ...
0
votes
1answer
12 views
Does flexbox display alter margin widths?
My margins when using flexbox (current version or display: flex;) seem to be doubled and I can't figure out why. All the other margins between sections on the page show up as 10px as they have been ...
0
votes
0answers
71 views
Pkcs7 padding in java
Iam using TripleDes /cbc/pkcs7padding in C#.net to encrypt file.
and i need to decrypt in java.In java am using DESede/CBC/PKcs5padding
But the file is decrypted,but corrupted.
*In java is it ...
0
votes
0answers
51 views
Ignoring padding/margin in iframe overflow
I'm trying to display a webpage within an iframe that is inside a div. I have overflow set to auto and it works fine. However, when I add top or bottom padding or margin to the webpage being displayed ...
0
votes
1answer
64 views
Why can't I change the style of all li elements inside an unsorted list using JQuery?
I tried to change the top padding for every item in my list, but it didn't affected them at all, I want to do this when the browser being used is Internet Explorer. I tried the following:
if ...
0
votes
0answers
57 views
Android Split ActionBar Padding
In my App I have an Action Bar at the top of my screen which the padding is fine using this code:
<style name="TestTheme" parent="Theme.Sherlock">
<item ...
0
votes
0answers
31 views
Change padding on fancybox depending on image width
I am new to javascript and jQuery and am trying to make a slideshow using Fancybox.
The problem is that I want the images to display on a box of the same size regardless of whether they are portrait ...
0
votes
3answers
35 views
Adding padding is adding unwanted width to element, fix? CSS
All my searches to find an answer have failed, so here goes. I'm trying to add bottom padding to a button that is wrapped inside of a div, and I want to move the button up closer to the top. However, ...
0
votes
0answers
120 views
Android Menu Button Style Help (Padding)
the answer to this should be simple, but I've spent hours trying to figure it out with no success. I have a menu at the bottom of my app for one page, in this menu there are 3 buttons however it seems ...
1
vote
1answer
64 views
Android Emulator clicking more than one item in gridview
I have a grid view which is full of values for a word search,
Basically, I don't know why, but when I click a letter, it highlights the next 4 beneath.
At first i thought it was because my vetical ...
0
votes
1answer
19 views
Table cell alignment is driving me crazy
I am not sure what CSS I need to apply to make all of these tables the same exact height/padding.
See how Step and Abs aren't align with the others (look at the bottom border) - that is driving me ...
0
votes
1answer
30 views
cell margin for dynamically generated table items
There is a huge margin between Odo and Location columns even though I have set the
width for the td tag.
I have a simple table:
<table width="95%" border="0" cellspacing="0" cellpadding="2">
...
0
votes
2answers
56 views
Padding in empty <td> not working properly in IE7
I have a simple page with products-list (downside) and basket (upside). When i click on any product in products-list, it will move img from product's list td to basket's td. It is realized by tables ...
2
votes
2answers
70 views
__attribute__((packed)) alternative
consider the following structure:
typedef struct __attribute__((packed)) a{
int a1;
int b2;
char cArray[5];
int c3;
} Mystruct;
Now in my code, Im doing this:
char source[50];
...
3
votes
2answers
80 views
structure padding information
struct abc
{
char arr[7];
char arr1[2];
int i:24;
};
In the above structure using sizeof operator I got its size 12 byte. But according to my calculation (may be wrong) it should be 16 byte. ...





