1
vote
2answers
65 views

How can I have borders on my website?

I am extremely new to all this HTML and CSS stuff so keep in mind that I am a newbie and don't just shout at me for not knowing this. :) I am currently creating a website for myself in order to ...
0
votes
1answer
12 views

Suggestions for graph ui library for showing analytical graph

I want to make analytical graphs of tweets, something like the following website link Website-Link I wanted to know what are the best option available in open source ? I have heard Raphael.js is ...
0
votes
1answer
15 views

Responsive scroll content

I want to do a section in my site which has notices into a scroll, but i also want it to be responsive but i can“t because i cannot assign a fixed with to my list items. I will like to know if some ...
0
votes
2answers
33 views

crop image when overlap in responsive web design

i am creating a responsive web design containing images....i want to know if there is any way i can crop images when they overlap i.e if i have two images in one line image 1 and image 2 image 1 is at ...
0
votes
1answer
31 views

Dynamically resize canvas within div element

I am working on a website and I want to take what I put in between the title tags and make it an element on the page itself. I am also wanting to do some manipulating of the text like adding borders. ...
2
votes
4answers
45 views

CSS: creating non-equal margins when centering a block element

The problem is as following. I have a block element, say <div> tag, and I want to center it. I can just set margin-left: auto; margin-right:auto and the problem will be solved. But how can I ...
0
votes
2answers
39 views

How do I align an icon right next to “Click here”?

How do I align an icon right next to "Click here"? I was able to use the below CSS to accomplish it but on a PC when using firefox, chrome, and safari the icons are not aligned. <div ...
2
votes
2answers
55 views

How to have different divs on different positions?

I am going to the following positions for my divs: If I have two divs, they should be located in the middle of the page If I have three divs, they should be located in one row If I have four divs, ...
-3
votes
2answers
56 views

Where should I start learning Highcharts JS? [closed]

I am beginner and do not know much right now, but I know a bit of HTML5 and CSS. I have to generate interactive graphs by fetching data from an Excel file (on a password-protected website), which get ...
0
votes
5answers
53 views

HTML Screen resolution

I'm having problem with pixels on web page. I have cover image on body and button on it. When page does resize, button is moving too. I want to stay button there where I put it even when screen ...
0
votes
1answer
35 views

Canvas covers page in Internet Explorer

I'm centering my canvas using this code: position:absolute; top:50%; left:50%; margin-top:-200px; /* Half of canvas height */ margin-left:-275px; /* Half of canvas width */ It works perfect in all ...
-2
votes
1answer
39 views

Web page layout design using div [closed]

I design a webpage in HTML using DIV. It contains Header, content and Footer.I need that footer at the bottom of the page.if the content data is increases the footer automatically go down. but when no ...
3
votes
2answers
79 views

CSS or Javascript to disable text selection highlighting from CTRL + A

Note: this questions is different from CSS rule to disable text selection highlighting Before ask I read the discussion history from above question. All works fine, except I can allow CTRL+A (Select ...
0
votes
1answer
41 views

HTML overflow CSS not working

Webpage I am referencing The CSS: a img { bottom: -30px; right: 0; position: absolute; overflow: hidden; -webkit-transition: all .1s ease-in-out; ...
2
votes
2answers
61 views

CSS Transform Translate to center of Window

I have a list of elements and upon a specific action, i'd like to apply the css-transform translate to move it into the center of the window. I know css-transform is used to relatively move an ...
1
vote
1answer
48 views

Graphical Tree Creation

I'm fluent with CSS/HTML Decent with CSS3 and HTML5 and Jquery. My project is using Asp.net MVC, LINQ, Razor. Just incase the later is important. I am trying to create a graphical tree for the user. ...
0
votes
0answers
8 views

AnythingZoomer: Move from center to either side

AnythingZoomer is created with the small image placed at the center. I would like to move it to the margin (both right and left on different occations) - and have the large image to follow. The small ...
-4
votes
0answers
53 views

Separating html from javascript for easier implementation in future?

I have request from client that all javascript should be completely separated from html elements. But, for example, i have element that should accept data from JSON object, into many small elements. ...
1
vote
1answer
13 views

Media queries no longer update CSS properties if those properties have already been manipulated in JS

I'm setting up a responsive layout using floated elements and negative margins. Resizing my browser everything works nicely: content + left and right sidebars for desktop, content and right sidebar ...
2
votes
1answer
61 views

How to make a content editable div behave like a text area?

I have built an editor that converts markdown to html. Right now I have to use jquery autosize plugin to resize the text area as it grows. If I use a content-editable div I can bypass it. But the ...
1
vote
8answers
81 views

How to display <li> </li> elements in line

Hi i am adding this content to <li> tags and it is coming one below the other.But i want it to come in one line like this... Home aboutus contactus ourservices here is my html ...
1
vote
1answer
24 views

The best way to do Vertical text for CJK characters?

As you may know, in mainland China, Taiwan, Japan and Korean, people sometimes writing and reading in vertical directions, here's a simple example: Years ago, there're no way to do so. Well, at ...
0
votes
2answers
40 views

Overlay HTML 5 input type file,camera with an image/text from HTML web page

am using HTML 5 input type controls to take capture, <input type="file" id="take-picture" accept="image/*" style="position:absolute;top:-50;left:-50;" /> Using this I am able to see camera ...
0
votes
1answer
21 views

2 div, one most left, one most right, when resizing window, need second div jump to next line but appear on the most left

I want to have the following effect 2 divs, one on the left side of the screen, one on the right side of the screen, but when I resize the screen, when the same line is not big enough for both div, I ...
0
votes
1answer
39 views

Can't style select box it display different on mobile

I have just a simple select box like this one <select> <option><a>Navigate To..</a></option> <option><a>> Home</a></option> ...
0
votes
0answers
33 views

aligning a vertical submenu list to the top of the parent list?

I'm very very new to jQuery (only started messing with it 2 weeks ago with no prior background other than HTML and CSS). I've been modifying a jquery code I found on here to make a full-width subnav ...
4
votes
1answer
56 views

Why does the bootstrap .row has a default margin-left of -30px

When I do boostrap I have to use the class "row" ... When you look at my test design: Why I am forced with a margin-left of -30px? With this html I would expect 3 rows sharing each column 33% of ...
0
votes
0answers
33 views

Html Table row height gets reduced over the limit

Given the HTML below how do I limit the min height of my yellow cell with the blue cell's height - I can't use min-height as blue boxes height is defined in the external style. <!DOCTYPE html> ...
0
votes
3answers
36 views

Width doesn't respond according to the media query

I was experimenting with media queries to see the effects. So I tried using min-width(480px) query to change the width of a div from 100% to 520px when the window was maximised but the width of the ...
0
votes
1answer
26 views

Animation during a postback to mock smoother page redirects [closed]

This might turn out to be a very silly question but I could not find any resources that could help me. My requirement is to have "smoother" page transitions. To explain a bit more when I typically ...
1
vote
5answers
81 views

Nest/Stack div elements in a timeline

Updated question: I want to display events in a timeline like shown in the following image: The event data items have two attributes: "start time" and "length", so that the data could be imagined ...
1
vote
1answer
41 views

How can I create two full-width headers on the top of the page without position:absolute?

I need to create two full-width headers but I can't seem to find a way to do them without using position absolute because if i use position:absolute, I can't use margin-bottom, which I need. What can ...
2
votes
2answers
31 views

Bottom border runs away when hovering button with box-shadow in IE9

Bottom border moves down and down again in IE9 when hovering/unhovering the button: <!DOCTYPE html> <html> <head> <style> .btn:hover { box-shadow: 0 0 0 2px ...
2
votes
3answers
51 views

Identify all elements present at specified position

Is there any method in jQuery to select all element located at a particular position for example select the element that is located at left:100 and top:300 and another div is located at same position, ...
0
votes
1answer
40 views

Jquery - Background images - full width gallery transitions

I have a brief to build a swish B&B website - they would like full width background images which I've coded as a cover image using media queries to save loading the larger images on smaller ...
0
votes
2answers
52 views

How to set div height to auto-adjust for background size?

I am making a responsive site . my problem is How do I get a div to automatically adjust to the size of the background I set for it without setting a specific height (or min-height) for it? ...
1
vote
0answers
21 views

Contenteditable bug in chrome

I'm using Chrome 27.0.1453.93 and Ubuntu 13.04 If we have contenteditable="true" on element with float set to left or right, and if the parent of this element has clearfix class, we can see strange ...
0
votes
3answers
48 views

Boxshadow now working on :hover but does in other one

I cannot get these div's to display the box-shadow when I hover over another div. I got it working in a Jsfiddle but when applied to these div's it doesn't work and I don't know why. I have included ...
-3
votes
2answers
52 views

How to get the rounded label same as button? [closed]

i'm trying to get the label as like a button. My page: http://jsfiddle.net/5gaa3/5/ {add some code in here....} In this fiddle, in header i've a "select list" label i want to display that label ...
2
votes
2answers
84 views

Having trouble making hidden/visible error message

I am making a contact form, which includes name, email and a message which can then be submitted. If any of the three fields are null an error message is shown which I have working. The word "error" ...
0
votes
6answers
47 views

Margin-top not working for certain elements

I have 2 elements that are not responding to margin: 260px 0 0 0; or margin-top: 260px;. And I don't know why. When I open dev tools in IE and inspect the element, the margin is there, but the element ...
0
votes
1answer
28 views

CSS3 Animation not working

I am trying to get one div to rotate around another using CSS3 but for some reason it will not animate at all. I am using Chrome. Can anyone help? here is the css .container { margin: 0 auto; ...
0
votes
1answer
15 views

On declaring html 5 DTD some css styles are not computing any browser

Top and right styles of "#help" are not computed in any browser on declaring doctype as Html code is: <div id="events"> <img src="media/Event icon.png" alt="events" ...
1
vote
2answers
57 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? ...
1
vote
1answer
49 views

Why is Bootstrap nav dropdown menu aligned to the right?

I am having a bootstrap dropdown. It works fine, but when I am inside a page accessed through the menu, then it gets weird: ...
0
votes
2answers
29 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! ...
0
votes
3answers
54 views

CSS3 hover and active problems

Trying to make CSS functional map: CSS .fader-us { display: none; } .fader-us-content { display: none; position: fixed; top:50px; left:50px; z-index:81; } ...
2
votes
1answer
33 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: ...
0
votes
1answer
50 views

How to set a minimum width with background-size

I have an image that is 1000px X 600px . I want to use it as a responsive background for a div but would like to set a minimum width of 1000px despite how small the browser window is. This is ...
0
votes
0answers
18 views

Interactive html5/css/ map

I wanna create interactive map (of slovak republic) with html5/css, but i dont know how to create changing-color hover property.Any ideas how to cut the shapes of map and then assign a hover that ...

1 2 3 4 5 94