Most voted "layout" questions
The layout tag is for questions about the placement, alignment and justification of objects with respect to an element it contains for any language or technology.
Learn more…134 questions
Sort by count of
-
9
votes2
answers6946
viewsWhat is the difference between Template and Layout?
I would like to know the difference semantic, visual and web development front-end and back-end. @Edit Related: Is there any kind of dependency? To have the layout you need to have the template?…
-
8
votes1
answer981
viewsWhat is the difference between the Height and Clientheight properties of a Tform?
In Delphi a form has 2 properties to define the height of the form: Height and Clientheight. However, what is the difference between the properties Height and Clientheight of a Tform?…
-
7
votes1
answer642
viewsRelative sidebar in responsive layout
Solved, look at my answer * I asked this question in the gringas, but I don’t think I could express myself well there. Ask there: https://stackoverflow.com/questions/25481613/side-menu-align I have…
-
7
votes1
answer1164
viewsDropdown containing image on the right
I am using Bootstrap to make a bar at the top of the page, and I have a problem: What I need is to open the dropdown, have a list of options, and an image next to it that always has the same size of…
-
6
votes2
answers809
viewsHow to load a view into a layout?
I’m trying to carry a view within a layout, follows my controller down below: class IndexController extends BaseController { protected $layout = 'admin.layouts.default'; public function index() {…
-
6
votes3
answers1165
viewsProblem leaving automatic field width in responsive layout
I have the following situation. I’m working on a responsive layout that features three columns, left sidebar, center and right... It turns out that inside the right sidebar there is a text field and…
-
5
votes2
answers256
viewsProblems with Zend layout
I have a view that is formed by a layout different from the pattern in my project, Seto it this way: public function init() { //Colocando o layout default…
-
5
votes4
answers10243
viewsHow to align <li> items from a <ul> list below?
The idea is to create a chat similar to skype, Whatsapp, etc... Where messages start to appear from bottom to top until they reach ul height so the scroll bar appears. ul { list-style: none;…
-
4
votes1
answer185
viewsWhy doesn’t the "Landscape" position resize the Longlistselector?
Why when I put the phone in the Landscape position, the LongListSelectordoes not resize? Follow the image: Follows my XAML <Grid x:Name="ContentPanel" Grid.Row="1" HorizontalAlignment="Center"…
-
4
votes1
answer641
views -
4
votes1
answer97
viewsDifferent ways of exposing data
It is wrong to expose data and actions that should (inputs, and buttons) be made on these data in tables? Example in the figure below this being displayed data and actions that should (inputs, and…
-
4
votes1
answer117
viewsDoes having the layout ready facilitate development with MVC?
I’m learning to program and study dozens of things at the same time because programming is my job. What I’d like to know is about MVC. I imagined that in relation to the MVC, the V of view should…
-
4
votes1
answer168
viewsHow to extend the length of Widgets within a Qscrollarea?
I’m looking to build a question form in Qt. As there are several questions to be answered, it is necessary to allow the scrolling of the form, and so I used a QScrollArea. Questions are all answered…
-
4
votes3
answers785
viewsCreate Textview’s dynamically
I have a TextView and would like that instead of filling with a Arraylist, with all items in your setText, that it be created several times on the screen, with the respective items of this array, in…
-
4
votes4
answers82
viewsDoubt with height in a DIV
I have a problem that seems very simple to me and I’ve done it before, but I just don’t remember how! Assuming a page with 3 Ivs (header, content and footer) how do I make the content div take up…
-
3
votes1
answer2686
viewsPositioning of components using Gridbaglayout
I’m making a panel and I want to have the following layout: The width of the panel takes up the entire width of the frame, and I want to have 4 buttons in the right corner of that panel. I created a…
-
3
votes2
answers180
viewsProblem in fixed layout creation
Guys, I’m having trouble creating a layout fixed that only adapts to the height or width of the screen, whether mobile or desktop. But it is not a responsive site, it is a normal site for desktop,…
-
3
votes1
answer224
viewsLeading vs line-height
I have the following problem in converting a layout, I have a list of names that has the following property (in the image below): I found some formulas like this Line-height = Font-size + Leading/2,…
-
3
votes1
answer2372
viewsHow to add the eye to display the password in Android Studio?
I created a login form in my application and would like to put the eye button so that you can display the characters of the login field, as shown in the screenshot: I’ve done some research and tried…
-
3
votes2
answers827
viewsProblem with component position and size
I’m doing a program using the wizard, the famous "click and drag". Most of the project I’m doing on my computer, and I use the command to maximize the screen on the frame, and I adjust the panels so…
-
2
votes2
answers7444
viewsSpacing with bootstrap columns
Studying the official website, I saw that the cool-Xs-offset was implemented only from the version 3.0.1, thus includes the version 3.0.3 on my website. Problem What happens is when I apply the…
-
2
votes1
answer11594
viewsCustomizing individual pages in Wordpress
Wordpress offers the option to customize the Live Themes via the Customize button. However, I would like to have this same live option to customize the pages individually, without having to be equal…
-
2
votes1
answer2156
viewsFixed Div when decreasing the screen
I’m developing the following website: http://173.44.46.62/~bellanap/pedidos.php but when you lower the screen, the div where the form is breaking. It needs to be fixed. Help me?…
-
2
votes1
answer676
viewsHow to maintain the layout of the components created by Windowbuilder in eclipse after compilation?
I created a Jframe using the Eclipse Windowbuilder plugin. Spacing, sizes and patterns have been defined. However while compiling the project the patterns are lost. Below the 2 photos for…
-
2
votes1
answer66
viewsDOUBT: Division of layout
I am new in the area of development and I am developing a project for learning. Here I have a question about the layout division. What is best practice? Have separated the parts header sidebar…
-
2
votes1
answer87
viewsHow not to use so many activities?
Hello, I’m starting to program something on android a few days ago (a very simple but extensive shell identification program, in it you have 5 options, within these 5 more some depending on the…
-
2
votes1
answer2621
viewsHow to decrease the spaces between the edges of a table in html?
I have a table and would like to remove the spaces between the edges! How can I do this? <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;…
-
2
votes1
answer614
viewsResponsive menu with grid layout
I’m learning grid and responsive layout and don’t know the best way that I could create a "hamburger menu" with it. So far I’ve managed to make my content wrapper move to the left and leave a space…
-
2
votes1
answer1049
viewsPositioning components within a Jframe
I’m trying to position some components on a screen, but it’s not working very well. So I created a kind of simple example to illustrate the problem. I accept subjects to perfect the way I’m doing…
-
2
votes1
answer352
viewsAndroid Tablet Incompatible App (Playstore Info)
I recently developed an app that I published in google play store with all the necessary requirements, however when trying to download a tablet Asus Zenpad 3S 10 Z500M this is incompatible and does…
-
2
votes1
answer554
viewsHow to make a footer (footer) stay fixed after the Parallax effect?
I have this image and I would like to have an effect equal to option 3 (three) of this image, follows: DETAIL: could be option 2 (two) only I do not want the footer to pass to the area of the screen…
css twitter-bootstrap front-end layout backgroundasked 6 years, 6 months ago Rafael Souza Calearo 191 -
2
votes2
answers161
viewsPosition Buttons Scaled Table Using Layouts Manager
I’m having trouble positioning components. I have a table, and 3 buttons, and I’m trying to place the buttons above the table centrally. Example: I tried to use the FlowLayout, and the result was…
-
2
votes1
answer499
viewsHow do I define the size and place of components?
I created this code in java to train a little and learn but I can not set the place where the JComboBox and the JTextField will appear and the size of them as I do? I want to leave them in the…
-
2
votes2
answers130
viewsAuto iOS layout does not work properly Xcode 8.2
I’m developing an App in Xcode 8.x. I have a problem resizing 4 buttons on the first screen. I work on the design of iPhone 5 or 6 and configure all auto layout, when I run in all Vices is cool…
-
2
votes1
answer364
viewsArrange Boxes vertically
I wanted to put panels in specific positions, so I tried to combine some layout managers, but I still didn’t get the result I need. I tried to use the gridLayout, so the components wouldn’t be…
-
2
votes2
answers844
viewsButton that changes the site color
I am trying to make on my website a button that is Sticky, by clicking on that button, it makes a Collapse right and shows a container with a certain number of colors available for the user to…
-
2
votes1
answer44
viewsHow to make proportional screens on different phones on Android?
I’m taking a beating to get that answer, so who knows who around here can give me a little help... I need to place a certain screen, a background image, and a series of buttons superimposed on this…
-
2
votes1
answer31
viewsFirefox and Edge do not apply margin to the element
I have tested in Chromium browsers and operates, it worked, but in firefox and edge has this problem Use the Materializecss I have an element <main> which contains the main content of the…
-
2
votes1
answer710
viewsCSS: Header and body positioning
Talk people, I’m dealing with CSS for a personal blog that I intend to create. But I’m having trouble understanding some aspects of positioning. Below is an initial version of the blog: <head>…
-
1
votes1
answer320
viewsJlist Custom Cellrender
I’d like to make a Cor yield with JPanel so that they would be as follows: It would consist of a JPanel, another JPanel inside that would have changed the background and two JTextField or JLabel I…
-
1
votes3
answers501
viewsHow to resolve this situation in the layout part?
I wonder how, through the tools of Photoshop CS5(CS6) I can make either white or black arrive in the color pointed by the hexadecimal code which is also that of the larger color image. I tried to…
-
1
votes1
answer335
viewsLayout customization of Joptionpane
I have the following structure of my Joptionpane, with horizontal typing fields: How to vertical the input fields? Here below is the class code: import javax.swing.*; public class…
-
1
votes0
answers183
viewsAngularjs: Questions with complex template
I need to create a page where the template should vary as requested. For example, on the home page I have a space for contents in tabs and a fixed column (as shown below). Both tabs and column are…
-
1
votes1
answer103
viewsLayout with 100% width and/or 10% height
How can I apply in my application to leave the width and/or height at 100% for iphone and ipad? have in my navbar application. textview, webview... thank you
-
1
votes1
answer520
viewsLayout does not appear in "_layout.cshtml"
I’m editing the _layout.cshtml file so it can be replicated on the other pages. However, when I run my program it’s like I haven’t made any changes to the layout. What can it be? By the way I’m…
-
1
votes1
answer221
viewsCenter Text block vertically according to the size of the next div
My partners, I’m losing my hair with this problem I’m facing. I have some bootsptrap pages, in which each container has a row (Row) and the same has two columns (each with the classes: col-Xs-12…
-
1
votes0
answers63
viewstext-indent without working on Edge in a select type element
I applied a text-indent to a select, which works on all current browsers except Edge. Have you ever experienced this problem? some solution? Follow the code: .form-control select{ width: 22.4%;…
-
1
votes1
answer225
viewsscroll with position:Fixed losing the right margin
When I scroll down, the div#chat, is fixed everything straight. However the problem is that the layout breaks losing the right margin. How can I solve this problem? $(document).ready(function() {…
-
1
votes0
answers351
viewsCreate and save text file(.txt) with Vb.net?
Layout Utilizado Nomenclature: XXXXXX_DDMMYYY_ZZZZZZ.TXT DD = DAY / MM = MONTH / YYYY = YEAR: XXXXXX = It will be a 6-digit fixed code with zeros on the left. ZZZZZ = Will be a sequence of the file…
-
1
votes1
answer38
viewsHow do I select the settings in the menu port, which is "Soaked" or "Runtime ADD" in the Liferay Layout.tpl?
Hello, I need a little help, put the menu automatically in the layout and it should have specific settings... "Can’t be in the theme because not all pages should display the menu." I’ve tried this…