0
votes
3answers
15 views
Vertical-align middle for block inside div
I'm having trouble with vertical-align: center for <p> inside <div> . There is nothing more to explain so I just link JSfidle
I'm JSFiddle link
0
votes
2answers
24 views
Add div next to other centered div
I want to add a div to the right of other div which is positioned in the center. As shown in the image:
I have this html so far:
<div id= "top-menu-wrapper">
<div id="top-menu"> ...
0
votes
0answers
8 views
Nested flexbox flex-grow taking extra space
I have a global container as flexbox and inside the flexbox I have sidebar and content
then sidebar taking grow: 1 and content grow: 2. Both sidebar and content are flex box as well.
If I use ...
-3
votes
0answers
21 views
Drop down menu disappears when I scroll down [on hold]
Take a look at my current drop down menu. If you look at the "Education" drop down you will notice that it disappears when you scroll down.
I have tested and changed the HTML code, but nothings seems ...
0
votes
0answers
26 views
aside tag won't go inside the border
I've been designing my website and when it came to the aside tag, it goes under the border and I can't get it back up with out using position:relative. Is there any other way? Or is it best using the ...
0
votes
0answers
27 views
Custom HTML templates created with Html canvas
I have a web page that allows users to upload media files in some "containers" - similars with templates in PowerPoint (html divs displayed into an html page). I want to extend the functionality with ...
-1
votes
4answers
65 views
How to Change input language of textbox in html?
I want to change language of textbox to marathi in html file
My code is as follows but it not working
<html lang="mr" xml:lang="en">
<head></head>
<body>
<textarea ...
0
votes
1answer
30 views
How to center an advertisement in a fullscreen html5 game?
How do I center an advertisement in a fullscreen html5 game?
My game is designed so that it goes fullscreen on your browser while playing.
I want my advertisement to be always in the center regardless ...
1
vote
2answers
36 views
Scrollbar added to an element when width is 100%
I'm curious why overflow: auto; rule adds scrollbar in this case
CSS:
textarea {
width: 100%;
margin:0;
padding:0;
}
.span4 {
width: 300px;
}
aside {
overflow: auto;
}
...
0
votes
2answers
28 views
responsive tab menu with centered dropdown area
This is what it should look like:
There is a tab-menu and a dropdown area. This should always have the same position (but different content and the respective tab choosen) as in the picture. Meaning ...
0
votes
0answers
9 views
Blogspot CSS style sheets links widget bundle remove
How to remove or delete the blogspot css style sheets links static dynamic widgets bundle, and remove/edit template skin page-skin-1 Text/CSS inside.
http://blogsitein.com/?p=1031
-1
votes
6answers
45 views
HTML And CSS Custom Font is not coming on my page
This is my html code---->
<div data-role="page" id="page1" >
<div data-role="header" data-theme="b">
<h1>header</h1>
...
0
votes
3answers
22 views
How do I/can I recursively indent div's with a class?
I'm looking at a page of html code that follows this pattern:
<div id='1' class='someclass'>
contents
<div id='2' class='someclass'>
other contents
<div id='3' ...
0
votes
2answers
21 views
List style image with not function
i try to personalizate my web page with an image on a list. I try to use the list style image but not function.
You can see at the page http://ctp.servizieweb.it/flotta/
I use this code:
CSS
...
1
vote
1answer
27 views
Text wrapping around a div
How do you get the text to wrap around a div if you want the div on the bottom of a container? I can figure out how to get the text to wrap around the div as long as its on top, but if I try and push ...