Posts by Arnon • 391 points
23 posts
-
0
votes1
answer55
viewsA: Stylization of CSS form
Your form was positioned to the right because inside the body, in styles, is margin-left: 36%. I recommend avoiding using percentage to set margins. In the last field there are 2 inputs with the…
-
1
votes1
answer208
viewsA: Adjust the alignment of the dropdownlist in a Bootstrap navbar
Bootstrap has specific classes for vertical alignment. Instead of: <div class="col-md-3"> <select data-plugin="selectpicker" title="Selecione uma opção" class="show-tick…
-
-1
votes1
answer44
views -
1
votes1
answer35
viewsA: How to get my list inside the card with responsive size!
John, to solve this you need to set @media Rules that serve to apply different styles to different devices/media types. I will leave an example here, but you will have to apply for the site as your…
-
0
votes1
answer47
viewsA: How to position the text on the right side of this Section? I used"float: right;", but keep this white space, I’m using Bootstrap for the texts
welcome to Stack Overflow! I didn’t have to change your css at all. Being using Bootstrap makes it much easier to do what you need. I just inserted a <main>to encompass everything and I used…
-
-2
votes1
answer43
views -
-2
votes1
answer43
views -
1
votes1
answer29
viewsA: my checkbox button is not working(possibly because of css)
I don’t know how your Javascript is, so I’ll suggest you the following code: function mostrarSenhaEOcultar() { var x = document.getElementById("senhaInput"); if (x.type === "password") { x.type =…
-
-2
votes1
answer105
viewsQ: How to create a Constructor when there is if/Else and external variables?
I have several variables like this, that call an HTML element always with the same name: var $inputFromA = $(".inputFromA"); It’s at least 10: inputFromA, inputFromB, inputFromC… All these variables…
-
1
votes1
answer78
viewsA: Image overlaying the site text
Remove the position: absolute; and add a float: right; in the .content img. If you want her next to the h1, just tag <img> before the tag <h1>. .container { width: 100%; height: 100%;…
-
0
votes1
answer27
viewsA: Slide made using html and css does not fill the page width
The classes .gallery .item in his css have an already defined height of 400px and apparently he is keeping the aspect ratio of the image. If you really want to force the image increase I suggest…
-
2
votes1
answer84
viewsQ: Auto Close Alert after consultation in the Database
I am trying to close an alert automatically after the user performs registration/login. The alert is working in a good, as soon as the query in the Database is held the alert appears on the screen.…
-
-1
votes1
answer30
viewsQ: How to use Safariviewcontroller on all App Urls
I have an App that presents itself initially with a TableViewController where each cell leads to a ViewController simple. But each Viewcontroller presents many Urls that are automatically recognized…
-
2
votes1
answer79
viewsQ: Random ads between cells in a Table View
I’m trying to insert Ads totally random between cells within a UITableView. That’s kind of what I want: So is mine Table View Controller: import UIKit import GoogleMobileAds class Page1:…
-
1
votes1
answer67
viewsQ: Difficulty loading sections in cellForRowAt
I’m having a little difficulty in implementing indexes (A through Z) in my app... See the structure below, what should I do to properly load the indexPath.section?: struct EmployeeDetails { let…
-
-1
votes2
answers123
viewsA: Searchbar shows right result, leads to wrong Viewcontroller
I managed to solve! Just make a few changes to the segue, I’ll put the before and the after for comparison purposes: --- BEFORE --- override func prepare(for segue: UIStoryboardSegue, sender: Any?)…
-
1
votes2
answers123
viewsQ: Searchbar shows right result, leads to wrong Viewcontroller
I’m putting together an app that shows managers on Page1 and their respective employees on Page2. I decided to mount a plist and press a Tableview, see: To load the plist correctly insert to…
-
2
votes1
answer67
viewsQ: How to receive data of subitens from a plist?
Good! I’m having trouble receiving sub data from my plist. Note... This is my directory.plist: I want to throw it all in this one Main.storyboard: Whereas the Keys Position and Name would be in the…
-
0
votes5
answers241
viewsA: Uitextfielddelegate does not hide the keyboard
In his Main.storyboard, click on Textfield, go to Attributes Inspector and look for the Keyboard option. There you have the option to make it disappear: Try the option Dismiss. Hugs…
-
0
votes2
answers80
views -
2
votes2
answers208
viewsA: Swift 3 - How to resize Uitableview automatically
Simple, just enter this code into your viewDidLoad: tableView.rowHeight = UITableViewAutomaticDimension tableView.estimatedRowHeight = 76 In the first line, it will resize automatically. In the…
-
1
votes2
answers80
views -
5
votes2
answers1003
viewsA: Swift 3 / Xcode 8 - How to change the native language of my App?
To change only the base language, go to the folder where your project is located and open the contents of the project package: Then open the file project.pbxproj with the Text Editor. Once done,…