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
I'm creating a theme for Tumblr and locally everything works fine. Yet when I paste the code into the Tumblr editor and preview it on the site a blank space appears on the top of the page. I've looked through the css and cannot figure out why it's appearing. Any ideas I've tried everything.
Tumblr address is http://storyline-expose.tumblr.com password for it is WIP
Screenshot of the problem:
Add margin-top:0 to .blogTitle
The problem comes with the <h1 class = "blogTitle"> and is well described here:
Margin on child element moves parent element
Another solution (besides Zach's) is to set overflow of the parent element to 0:
.headCoverWrapper { overflow: auto; }
Related
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
I'm working on a ebay template for a store, and I'm trying to make a sidebar, and this happens.
http://i.imgur.com/Oktg32w.png
The sidebar is on the right, how do i get it to position all the way up?
here's the html/css code.
http://pastebin.com/DwbHeTcD
Make whatever div you have that encompasses the entire navigation bar position: absolute, and make sure it's the first thing in CSS, to make it nothing override it.
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 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.
Improve this question
First, the page: https://dl.dropboxusercontent.com/u/238966491/website/index.html
I'm wondering why the last line of text--"Let us protect you, so you can focus on your business."--is starting as if it's part of the Phone div. I want it to start on its own line, but it seems to think that continuing it from where the Phone div starts is a good idea, despite the <br>.
How can I get this div to start on it's own line, so its text is on one line? (It works in Chrome.)
Edit: Here's a CodePen with the problem displayed. A lot isn't working because of the dependencies and stuff, but the problem is still present. See the third section, in the .tagline div. http://codepen.io/bnb/pen/vIBEw
You just need to clear because before of .tagline you have a left floated div. Add this on your CSS:
.tagline {
clear:both;
}
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'm really a noob with HTML and CSS skills so I'd like to do this very simple question
I Saw on the Quora Site a very nice image (I'm not sure if that is a simply image or it's another attachment technic) and I'd like to build a similar in my page like the Quora did.
Someone can explain to me How to do it?
It’s not clear which image you mean.
On the home page, there is a background image (stars), which gets inserted via CSS (background property), and an image (earth), which gets inserted via HTML (img element).
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
I am making a website, and I've added a list and made the list links to different websites.
The problem is that on the website it shows that they are links but I can't click them, or mark them or anything. I can't mark the text on the website either.
Yes a bit of your code would be helpful.
But it sounds, that some container overlapping your content if you reduce the size of your Browser-Window.
Just check that
Edit // If that is the problem, try to give your content a higher z-index.
Sounds like you're not using the <a> element.
See this tutorial on how to make a link.
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 site I'm working on if you scroll down to the 'News' section there are 2 posts.
I wanted to contain the posts section within a set height of 300px so you will basically need to scroll down and if I add some CSS of overflow: scroll this will enable the scrolling.
How do I go about modifying this in WordPress for the posts?
I can not seem to be able to find the CSS for this area as it appears the whole news section isn't in a div of it's own.
If you want to hide the scrollbar you can just in css:
overflow:hidden
Otherwise, you need to find the template and put a condition in that, like:
if(posts->type=='news')
echo <div id="news">...;
then apply css on the id news.