Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
Hi I'm confuse how to make this
in my form input:
<input type="text" class="span2">
small background on corner right bottom.
Thank you for help
You can do this using background css property.
background: url('/img.png') no-repeat right bottom;
border-right: 10px solid transparent;
DEMO
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
Can anyone help me on how to remove the white line around the jquery mobile button
, i have added background image to it and want to remove that line.
Demo: http://jsfiddle.net/fepT4/2/
Like others said, it is hard to help you out if you don't have an example code or screenshot to show us what you want to achieve. In general, to remove the border, use css border-style: none; If this is not what you want, please provide more info.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
On this page, there is a form at the bottom. In Internet explorer, the text in the form is pushed to the right, by the arrow it seems.
I tried to eliminate this, but no luck. Could someone help me out, please? Thank you!
Kind regards,
Stefaan
Try adding clear: both; to .frm_forms.with_frm_style
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
The source code is here: http://bit.ly/17T0cps
I'm trying to make the BIG IMPACT text on top of the water splash. When at 100% view they are, but as I zoom out they look like the picture I provided.
Thanks
Just add
display: block;
margin: 0 auto;
to the img.splash.
To center any div use
positon:absolute or postion:relative and then
top:0;
bottom:0;
left:0;
right:0;
margin:auto;
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I would like to know, how I can make a sidebar with left margin 0 in the bootstrap 3.
For better explanation, see this example :
Site example
I would like this structure of the side bar.
Bootstrap (2 or 3) doesn't offer the possibility of including a left/right sidebar.
You have to put a <div> with a fixed position, and a height: 100%, aligned to left: 0
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
i am using some buttons
and i want to list them in one line. i tried this
.myclass{
position:relative;
float:left;
}
but i didnt work..
Give the buttons a float: left; after your float you have to set the next element clear: both; now you buttons should be in one line.
If the animation destroys your layout give the buttons a with.
You can use a table with a single row. See link for an example.