1
vote
2answers
33 views

Z-index issues not sure what to do now

How do i make the h1 and img elements "appear" ontop of the opaque div they are contained in? I mean, how do I make it look like they are not being affected by the opaque-ness of their parent div? ...
-3
votes
2answers
33 views

What technology can I use for an online store? [closed]

So, I'm starting a clothing company, and I am proficient in HTML, and PHP, as well as several programming languages such as C and Java. What is the best way to set up an "online store" where users can ...
0
votes
2answers
24 views

Parent inset box-shadow overlapped by children divs

I am having an issue where the children divs are overlapping the parents box-shadow bottom. The parent has a max-height w/ overflow-y: scroll. Any help would be great! ...
2
votes
1answer
30 views

Setting element data-icon with JavaScript

I have the following button element in my HTML <button id="play-pause" aria-hidden="true"></button> On the jQuery ready event, I run the following code: ...
1
vote
0answers
35 views

Table moves to j-query specified position on button click - and then moves back

I need 4x4 buttons, and since I am new to HTML etc, I decided to use the easy, but deprecated Table. Due to me using a premade online-found Filebrowser, I had to change my Jquery-file to a newer ...
0
votes
0answers
5 views

Get new Random Image in galleriffic Slider on Page load

I am using galleriffic (jquery plugin) for displaying slider in my project. My project requirement is to get new image on slider each time the page refreshes code <link ...
0
votes
0answers
12 views

Alternative method of keeping Html placeholder

I have a Registration Form in Razor syntax as shown below <div id="RegisterDiv" class="is-hidden"> @using (Html.BeginForm("Register", "User", FormMethod.Post, new { id = "frmRegister" ...
0
votes
2answers
44 views

HTML input does not get Highlighted/Selected

We are developing ASP.Net application. We have used HTML Input control . But we are facing problem to select/highlight the value in control. On some pages My Html Input control on Div, User Control. ...
0
votes
4answers
58 views

How can I align elements between two DIVs

I've got two containers on my website (Code for Good) with a few elements in them. How can I make the text paragraph, and the buttons align between them?
1
vote
2answers
51 views

Hide scroll bar, but still being able to scroll

I want to be able to scroll through the whole page, but without the scrollbar being showed. In Google chrome it's css: ::-webkit-scrollbar { display: none; } But Mozilla firefox and Internet ...
1
vote
1answer
78 views

ASP.NET, CSS and jQuery

I have this aspx page: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Some Title</title> <link href="css/home.css" ...
0
votes
3answers
71 views

JavaScript: how to build simple percentage increaser?

How to build increase value as percentage without progress bar. I have built an animator, but actually I need simple one which show value from 0% to 100% without progress bar or anything. Here is my ...
-2
votes
3answers
21 views

Is there a way to thicken a form legend underline?

I want bootstrap legend's underline to be more thick. I would like to override twitter bootstrap css. Is it possible?
0
votes
1answer
41 views

html align column right

I have this Html code : <tr> <td> <a type="text" name="color" >@client.Login</a> </td> <td> <a type="text" ...
1
vote
6answers
50 views

How align center text in custom buttons?

I have this html <head> <title>HTML5 App</title> <link rel="stylesheet" type="text/css" href="css/custom.css"> <link rel="stylesheet" type="text/css" ...
2
votes
4answers
55 views

Draw a crescent moon using SVG in HTML

Is it possible to draw a crescent moon using SVG in HTML? I've been trying things out at W3 Schools but I don't see an example of this. I don't need any of the shading that you see in typical google ...
0
votes
2answers
25 views

Making two other div's change color when hovering over main div

I have 3 div's. I would like to change some stuff in 2 of those div's when I hover over the "main"/"first" div. I am really, really trying to avoid any use of Javascript/jQuery, here. I am pretty ...
0
votes
1answer
29 views

Reorder div table-cells using media queries

I have a div table with two cells. Now I want to show the second cell at the top and the first cell at the bottom of page, when my page is displayed on a smartphone: <div class="table"> ...
0
votes
1answer
24 views

utf-8 characters not displaying in chrome

Having an issue with html special characters not displaying correctly in chrome see Example Page I have gone through and resaved every file in the project as utf-8 confirmed my meta tag ...
0
votes
0answers
25 views

Foundation 4: Disable small grid, just large grid

I got a small page where I must use Foundation 4. The problem is that I use the RoyalSlider plugin for the gallery. If I'm on a big screen it works quite well. It looks like this: ...
-2
votes
4answers
33 views

Replace Content Here

Ok so on W3Schools, it has the image below. Is there a way to keep the outer orange/yellow part and simply replace the "Content goes here" by doing src="somehtmlpage.html" which contains only a body ...
1
vote
1answer
56 views

What is Causing Spacing? [closed]

I've just updated Twitter Bootstrap on a website I'm developing and it broke the layout in a number of places. One of these places just has me stumped. The page in question can be seen at ...
0
votes
1answer
31 views

Information box based on drop down selection

Here is what I'm trying to do.. I have a drop box and I want a floating box to show a definition based on the item. For example, the list contains, Item 1 Item 2 Item 3 Item 4 The user hovers ...
1
vote
1answer
58 views

Animating a “peek” effect with CSS only

I'm trying to create a "peek" effect with only CSS animations. What I mean by that is that There will be a little blurb of content in a square, with a more detailed description underneath. When the ...
-2
votes
1answer
33 views

How to update the default HTML5 dropdown style?

Is there a way to update the HTML5 default dropdown style ? For example default dropdown look like this and my client required like Could anyone please give a solution for this ? Is it even ...
-4
votes
1answer
36 views

How a variable can take images instead of character? [closed]

I want to ask that var snowletter is taking character *. I want that this variable should taKe image. Can anyone tell how a variable can take images.. var snowmax=35 var snowcolor=new ...
2
votes
3answers
84 views

how to remove space at the bottom for dynamic contents?

I am designing a page where bottom part of a div should touch the end of the page that is no bottom margin or padding so I put height of the main div as $(function() { ...
2
votes
2answers
83 views

why won't my appendChild work?

function purchase() { var r=document.createElement('div'); r.className="row"; alert(r); var p=document.createElement('div'); p.className="purchase-hero-unit"; alert(p); var ...
0
votes
5answers
52 views

How to make the entire area of a div clickable while excluding the checkbox that's on top of that area?

I have a div with a checkbox inside the div: <div class="study-box set-box"> <span class="set-box-title"><i class="icon-th-list icon-white"></i>test set</span> ...
0
votes
1answer
12 views

Adding icons to options in multiselect?

How do I add icons to a multiselect component? I have found a Firefox only solution (see my answer below); but have found nothing interoperable. Should I just give up on this feature?
0
votes
2answers
57 views

Replacing page content using JavaScript not working

I'm creating a new website using HTML, CSS and a little JavaScript for school and have run into a wall. I am new to website creation and this will be the second website I've built so please bear with ...
1
vote
1answer
82 views

CSS div float left and right nowrap

A little background: I am working on a header which spans the entire with on the top of my webpage. I would like the current username, a logout button, etc. to be floated to the right in the header, ...
-1
votes
2answers
88 views

How is this hover effect done? [closed]

I'm not sure what to call this effect or even how to look it up. I want to do something similar. Hover over the links on the navigation bar and you'll see what I'm talking about. ...
0
votes
1answer
46 views

HTML5 Form elements and styles for mobile device

I am not using jQuery mobile for my mobile website, however i really like some of the form elements used. I am struggling to find how to create the following form elements: - Flip switch Checkbox ...
-1
votes
0answers
17 views

How to make an html and objective c lockscreen for iPhone

I am jailbroken and I've coded a custom lockscreen in HTML. the concept is that the time is displayed on a button and when that button is clicked, the phone unlocks. I'm wondering how to code a tap to ...
0
votes
3answers
24 views

Dynamically align on center divs inside another div with dynamically changing height

I cant find solution to my problem, so I am asking you for help... I have 1 div which is changing its height depending on browser window height. Inside of this div is 5 another divs 4 per line, when I ...
0
votes
5answers
65 views

Move <a> tag to new line if it's content flows out of the first line?

I'm trying to achieve the following, move tag to a new line if its content flow from one line to another, so you can see what I mean here http://jsfiddle.net/sNyzX/ Firs example (red) shows situation ...
1
vote
1answer
28 views

Layout troubles, need advice [closed]

I have a layout that I have mocked up in a drawing app. Now I have never had any issues with page layouts (that I haven't been able to solve), until now. I just I I don't know what else to try. I ...
1
vote
2answers
36 views

stretch image to 100% of viewport

I made an simple layout for an android application using html and css. The hole page has an background image, but i didnt declared it as: background-image: url( Because so belong my information i ...
0
votes
1answer
29 views

multiple background images not showing in IE and Safari

I have multiple background images on my 1 page- vertical scroll site that aren't showing up in Safari or IE. IE doesn't work because I know that I am not running IE9. Safari is 5.1.7 Are there any ...
1
vote
1answer
19 views

Consistent positioning of <table> element across modern browsers

I have two <table> elements, and I want to arrange them vertically in a specific way by making the second <table> shift horizontally by a fixed amount of pixels. For example: <table ...
0
votes
3answers
34 views

Getting background to stretch to full height of contents

My codepen http://codepen.io/leongaban/pen/sBvfL So having a strange issue, I'm trying to get the background of the #portfolio div to stretch to contain the thumbnails below which are in an ul list ...
0
votes
2answers
39 views

split a big HTML page to pages on client side

I have a huge HTML page which is mainly a form which is mostly like this: <FIELDSET id= '1'> <TABLE> <TR> </TR> </FIELDSET> </TABLE> . . . <FIELDSET ...
0
votes
2answers
31 views

Unexpected results in browser

Can somebody please help me understand why I am seeing what I am seeing? Code: <!doctype html> <html lang="en"> <head> <style> #Viewport { width:50%; ...
0
votes
2answers
38 views

border-bottom appears on top of the element

I can't figure out why my the bottom border won't appear below my navbar. It was working fine until I added #topheader so I figure that's my problem. If so, is there a more effective way to get the ...
0
votes
3answers
36 views

Responsive Previous and Next Navigation

Trying to make navigation with Previous and Next button. Want the Previous and Next to be on both ends of the screen. They need to be responsive and float closer to each other with the size of the ...
0
votes
1answer
26 views

How do I keep nagging the user to accept iPhone Safari's geo location?

I have a web page that requests HTML5 geo location from user. What if on the iPhone the user denies it? I want to prompt him again. How do I prompt him? (I want to keep prompting him until he ...
1
vote
1answer
43 views

Image in <img> tag is defaulting to 0 x 0 pixels despite setting its size

For some reason I'm unable to set the image size when using an <img> tag inside an html5 video element. It is always defaulting back to 0 x 0 pixels. The reason I'm using this img is as a ...
0
votes
1answer
47 views

CSS - footer with the top image

I have my html5 footer element on the bottom of my page and I want to set a background image on top of my footer. I add the following CSS: footer { background: #333333 url("footer_top.png") 50% 0 ...
0
votes
0answers
26 views

How to combine different frames in a single set

<div class="wrapper" style="width: 990px; height: 726px"> <title>HTML Frames - Example 3</title> <frameset cols="20%,*,20%" noresize> ...

1 2 3 4 5 115