CSS (Cascading Style Sheets) is a language used to control the visual presentation of HTML and XML documents including (but not limited to) colors, layout and fonts.
0
votes
0answers
6 views
applying jquery prettyCheckable for dynamic content
I am trying to apply jquery PrettyChecker sample like this SAMPLE FIDDLE
<input type="checkbox" class="prettyCheckable" value="1" id="Test1" name="Test1" data-
label="Right positioned label (no ...
0
votes
1answer
12 views
HTML/CSS Make header and nav sticky on top of the page
Currently working on a web project, I would like to set up a sticky part on my website
that could be always available. I tried different things but nothing worked.
My structure is like below
...
0
votes
0answers
2 views
datepickerfield sencha touch 2 - how to change default placeHolder color from black to grey?
There is:
{
xtype: 'datepickerfield',
placeHolder : 'Date',
}
As resul, HTML file displays:
<input class="x-input-el x-form-field x-input-text" type="text" id="ext-element-121" ...
0
votes
2answers
26 views
jQuery ajax - no jQuery css
I am trying to navigate through pages with ajax. I have a header and footer a div with id="content" between those two. What I want to do is to replace the content, in order to this I have an onclick ...
0
votes
0answers
6 views
how to use iscroll javascript in phone gap?
I have tried implementing the iscroll java script for my application as a remedial process for the CSS position:fixed that does not work in android 2 and 3 versions using cordova 2.1.0
I have copied ...
0
votes
0answers
12 views
CSS applied to aspx page working in firefox, but not IE. Only the style of 1 button doesn't work. Any ideas?
this is the CSS for the button....
.button:last-of-type,.button:visited, .button:hover, .button:active, .button:active {
background: #7C8C99;
color: #FFFFFF;
display: inline-block;
...
0
votes
2answers
17 views
Placing an input-field in a label, changing bgcolor on focus
So what I'm trying to do, is to put an input-field over a label and change the background-color of the input-field on focus. So that the bgColor covers the text of the label.
Here is what it looks ...
0
votes
0answers
11 views
Make datepicker be displayed beyond and iframe
I have a datepicker that is inside an iframe. However, there are times that the iframe is too small and invoking the datepicker will cause the iframe to have scrollbars due to content overflow. I need ...
1
vote
4answers
46 views
Foreach results in numbered format
I am using codeingiter and have soms results that i am showing from a database. The results are shown using PHP as follows:
<?php
if(isset($foo)){
foreach($foo as $bar){ ?>
...
2
votes
1answer
29 views
jQuery DropDown with Textbox for input
Is there any jQuery Plugin where i on click of the dropdown it shows the list of options. if there are not option that a user wants to select then i want to provide a way via a text box users should ...
0
votes
2answers
16 views
Accessing a child element in CSS
Here is the html list:
<aside id="polylang-3" class="widget widget_polylang cf">
<ul>
<li class="lang-item lang-item-5 lang-item-da"> danish </li>
</ul><aside>
...
0
votes
0answers
18 views
CSS and JS-files repeating themselves
I have a major problem with my current build. My css and js-files are repeating themselves. Its only one GET from the webserver but the webserver is serving files that are exactly twice as big in size ...
-1
votes
0answers
11 views
Data URI's for SVG in css background images
question is: when I convert my svg file for base64 code string, it seems that I get ordinary bitmap image in result, and this is pixelated after resizing, so it has no sense to use it this way. Am I ...
0
votes
3answers
22 views
pseudo css .hover explanation
im trying to construct my own navigation bar, Ive seen some forum with (css), and then im stuck of this css line,
#navbar li:hover ul, #navbar li.hover ul {
i know that the #navbar is the id ...
0
votes
1answer
19 views
Multi list drop down absolute position over and under one another?
How do I invert one list underneath the other so on dropdown the other list stay underneath in position and not floating at the bottom? How do I make the drop down menu not change positions?
...