Click here to Skip to main content
15,887,915 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Angularjs 1.5 - multi level tree node inside a drop down list Pin
Nathan Minier17-Jul-17 1:43
professionalNathan Minier17-Jul-17 1:43 
AnswerRe: Angularjs 1.5 - multi level tree node inside a drop down list Pin
BrunoFaitalaas17-Jul-17 21:41
BrunoFaitalaas17-Jul-17 21:41 
QuestionArray and Sub Array from PHP Pin
Jassim Rahma25-Jun-17 11:50
Jassim Rahma25-Jun-17 11:50 
AnswerRe: Array and Sub Array from PHP Pin
Planet Thomas4-Jul-17 1:19
Planet Thomas4-Jul-17 1:19 
QuestionRest API Versioning Pin
Abhinav S22-Jun-17 21:03
Abhinav S22-Jun-17 21:03 
AnswerRe: Rest API Versioning Pin
Richard Deeming23-Jun-17 1:43
mveRichard Deeming23-Jun-17 1:43 
GeneralRe: Rest API Versioning Pin
Abhinav S23-Jun-17 4:52
Abhinav S23-Jun-17 4:52 
QuestionOpen Snippingtool by HTML or by HTA Pin
Member 1326358621-Jun-17 9:58
Member 1326358621-Jun-17 9:58 
QuestionRe: Open Snippingtool by HTML or by HTA Pin
ZurdoDev21-Jun-17 10:25
professionalZurdoDev21-Jun-17 10:25 
AnswerRe: Open Snippingtool by HTML or by HTA Pin
Member 1326358621-Jun-17 11:41
Member 1326358621-Jun-17 11:41 
GeneralRe: Open Snippingtool by HTML or by HTA Pin
ZurdoDev22-Jun-17 1:18
professionalZurdoDev22-Jun-17 1:18 
PraiseRe: Open Snippingtool by HTML or by HTA Pin
Member 1326358622-Jun-17 8:13
Member 1326358622-Jun-17 8:13 
GeneralRe: Open Snippingtool by HTML or by HTA Pin
ZurdoDev22-Jun-17 8:15
professionalZurdoDev22-Jun-17 8:15 
GeneralRe: Open Snippingtool by HTML or by HTA Pin
Richard Deeming22-Jun-17 8:30
mveRichard Deeming22-Jun-17 8:30 
Question" How can add a new TABLE in NOPCOMMERCE? Pin
Member 1283740721-Jun-17 5:30
Member 1283740721-Jun-17 5:30 
AnswerRe: " How can add a new TABLE in NOPCOMMERCE? Pin
Richard MacCutchan21-Jun-17 5:50
mveRichard MacCutchan21-Jun-17 5:50 
QuestionSwitch between angular UI Router tabs with same state and different parameters Pin
NeelamParmar13-Jun-17 20:10
NeelamParmar13-Jun-17 20:10 
QuestionMessage Closed Pin
13-Jun-17 17:46
CheatHacker.com13-Jun-17 17:46 
AnswerRe: How To Get Google Rank In USA Pin
Richard MacCutchan13-Jun-17 21:46
mveRichard MacCutchan13-Jun-17 21:46 
AnswerRe: How To Get Google Rank In USA Pin
camillebo16-Jun-17 13:40
camillebo16-Jun-17 13:40 
GeneralRe: How To Get Google Rank In USA Pin
CheatHacker.com16-Jun-17 19:49
CheatHacker.com16-Jun-17 19:49 
QuestionHow can I pass the user id to the homepage after registration? And I also want to save that id? I'm using Laravel 5.4? And doing registration with auth Pin
Danish Tahir24-May-17 3:22
Danish Tahir24-May-17 3:22 
QuestionIs there a secure way to perform an API request from clientside script? Pin
Member 109773610-May-17 8:26
Member 109773610-May-17 8:26 
QuestionLayout Elements Horizontally Pin
Kevin Marois9-May-17 12:26
professionalKevin Marois9-May-17 12:26 
I have a Rows Per Page selector. It's two labels with a Select element between them. When I applied a style, the elements now show up vertically:

See here


Here's my HTML
<div id="headerLeft" style="position: relative; width:50%; float:left">

<pre>
<label>Show</label>
<div class="select-style">
    <select id="rowsperpage" name="rowsperpage" onchange="updateRowsPerPage(this.value)">
        <option value="10">10</option>
        <option value="25">25</option>
        <option value="50">50</option>
    </select>
</div>
<label>rows</label>




and my CSS
.select-style {
    border: 1px solid #ccc;
    width: 65px;
    border-radius: 3px;
    overflow: hidden;
    background: #fafafa url("img/icon-select.png") no-repeat 90% 50%;
}

.select-style select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
    }

How do I get these elements to align horizontally?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Layout Elements Horizontally Pin
Richard Deeming10-May-17 1:08
mveRichard Deeming10-May-17 1:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.