Questions tagged [behind]
54 questions
1
vote
4 answers
Hide a div behind
I try to do a simple think but I am stuck.
I have a div "scrolling" with a fixed position. When I scroll the page, I want that the div "scrolling" goes behind all other div below.
I put an exemple in : exemple jsfiddle
.scrolling{
top: 230px;
…

Maxa88
- 11
- 2
1
vote
2 answers
the text of a notetaking activity starts behind the app bar
The app works good, except for the fact that when I enter some notes, the first note disappears behind the app bar.
How can I start that part from under the app bar?
3 notes, only 2 visible
xml:

gerwin vis
- 37
- 5
1
vote
3 answers
IPhone - View hides behind the status bar
I am trying to add a subview to my iphone window and i have written the following code for that. Problem is that when the splash view or main menu view appears on the screen, it goes behind status bar. I mean the view starts from behind the status…

Aqueel
- 1,246
- 3
- 23
- 46
1
vote
2 answers
Make buttons cut off when over the edge of other DIV
I have a main DIV, and some buttons within that DIV. I want the buttons to be cut off when they go off the edge of the DIV (like this image here, where the blue is the body, the light grey is the div and the dark grey are the buttons.)
How can I do…

user2370460
- 7,470
- 10
- 31
- 46
1
vote
1 answer
Expaning scale effect of images behind themselves using CSS transitions
I am creating an illustration portfolio site and using CSS transitions to scale boxes larger to show detailed thumbnails of work.
But I am struggling because when I hover over the thumbnails they always seem to be behind one another like so: demo
I…

user3466579
- 31
- 1
- 6
1
vote
2 answers
Draggable div elements in table go behind others table cells
So I'm making the game of chess in JS (+jQuery) and the last thing to do is to make pieces draggable.
My board is regular html table (with TRs and TDs) with DIVs containing pieces.
I'm using jQuery UI to make DIVs draggable, but every time I try to…

adam
- 395
- 1
- 2
- 14
1
vote
1 answer
ExtJs - Javascript - ComboBox in Grid (Cell editing plugin) - Drop down list behind the Grid/Window
I have a grid with cell editing plugin on it. When i click the cell i want to edit, sometimes the dropdown list of the combo box is behind the grid/window (I can not see it, but if i modify the window size i can see the combo box items behind…

darkdante
- 707
- 1
- 17
- 36
1
vote
0 answers
When changing browser size .. a DIV goes behind the other one
When I change the size of the browser window a div goes behind the other one. The two divs are in the same container.
Please see the following image: http://img833.imageshack.us/img833/9394/ffffhb.jpg
How can I fix this?
here is HTML code for the…

Hazem Taha
- 1,154
- 6
- 18
- 31
1
vote
2 answers
Adding items to a JFrame forces them behind?
Hello all I have this problem that I can't seem to fix. I've been given some code and have to make a "tic tac toe" game. Fairly primitive. At the moment what it want's me to do is take user input (it just asks for what row / column you want to place…

Scott
- 465
- 3
- 10
- 22
1
vote
2 answers
Place a background Image behind a grouped UITableView
I've a grouped UITableView which has been resized and rounded. I would like to place a view BEHIND this table.I've tried:
[self.tableView addSubview:backgroundView];
[self.tableView sendSubviewToBack:backgroundView];
but it didn't work. This is…

Claus
- 5,662
- 10
- 77
- 118
0
votes
0 answers
Change color of datagrid cell from code behind using datatable
I have an datagrid with a binding to a datatable because i read csv files and i never know how many columns i need and whats name it have when user set the csv settings to UseFileHeader.
To fill the datatable with the data of the file is no problem…

Taucher
- 1
0
votes
0 answers
How to move Bottom Navigation View above phone keypad in Android?
I am using
com.google.android.material.bottomnavigation.BottomNavigationView
My problem is as follows, in Android 12 version, the gray buttons I marked with red in the picture above are the phone's "Home, Back, Recent Apps" keypad. My Bnv is…

cafer yıldız
- 21
- 1
- 4
0
votes
0 answers
wpf gradient brush like the picture
I am trying to make a brush like the picture.
What should I do?
In System.Drawing.Color, it was done as follows.
C# WinForm
Rectangle drawRc = new Rectangle(x1, y1, x2 - x1, y2 - y1);
Color[] colors = { Color.FromArgb(255, 0, 0, 0) };
GraphicsPath…

genesis5068
- 9
- 2
0
votes
2 answers
What is the right strategy of maintaining and combining branches with big differences in behind and ahead
At the moment I am maintaining two branches. A source branch and a derivate of it. They have to be both in sync because in the future they will be merged. The policy is that every two weeks the branches are synced / merged. As you can see the 'fork'…

Roel Alblas
- 165
- 1
- 10
0
votes
2 answers
How can i manipulate variable from another page ASP
I'm doing a little project.
I want to manipulate textbox of Form2.aspx from my Default.aspx
here's my code
Public Class _Default
Inherits System.Web.UI.Page
Dim stats As Form2 = New Form2()
Dim sim As Simulation = New Simulation()
Dim unique(5)…

ThorDozer
- 104
- 2
- 12