Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I cannot for the life of me figure out why, when people post on my php forum (called Just A Forum, from codecanyon [unsupported]), the posts tend to look like this:
Inspecting with chrome dev tools, the text looks fine and I don't see any evidence of line-breaks. I've played around with the textarea width, making it match the text container width, but that doesn't seem to help. Neither did making sure the padding also matches, the font, etc.
Rather than post a bunch of CSS that could turn out to be irrelevant, I guess I'll wait for some instruction. I really just would like a clue as to where I should look, things I could try. I don't even know where to begin, with this.
Turns out, wrap="hard" was the culprit.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I have just built a responsive HTML5 page, and as such, it links to other parts of the page from the menu... so, I have #home, #about, etc. I also need to pass a php variable for language, so that the correct language displays on the page, so I have lang=es, lang=gb, etc.
The languages are working fine and the links are working fine, but when I combine them both, the links stop working. Either as #about?lang=es or as index.php#about?lang=es. Neither works. It just stays at the top of the page and doesn't jump.
Any clues as to why?
Thanks in advance.
Kirsty
You should pass the php params first and then html tag ID
see the example below
https://domain.extension?lang=es#about
Dont worry about php variable value, it will remain untouched, servers will handle it
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I have a code like this :
<p><span><span>text</span></span></p>
When I say the font-size in anywhere of this elements, visibility on mobile does a big change between 23px and 24px, using em and pt too.
When I use 23px, it looks well... When I update to 24px: seems like 48px or more changed.
I don't use font-size in NO element before in all document, except the base css where 1.1em is updated.
I think is anoying but I don't have another way to explain it...
https://i.stack.imgur.com/JsITN.png (I cannot post images yet :/ )
see if you have og::content and you determinate width header
HTML syntax only values 1-7 possible:
<font size="6">This is some text!</font>
CSS syntax:
<p style="font-size:20px">This is some text!</p>
You sure you writing it properly?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I created php web application like 9gag, the problem is if any one view in chrome it's run nice but in internet explore it does not playing after pressing refresh it works fine. Plz help
Demo link http://myzonevideos.com/play.php?vid=8
Internet Explorer is a one crazy lame browser that ever been created. It must be something about headers of the video you are trying to view on browser.
Also you didn't provide the information that what you are using to play the videos, flash or HTML5?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
So i have been working on this problem all day, and i do not seem to becomming across a solution for this. I have googled the internet dry, however i have not been able to come a cross any help which i could use.
I know that there are many similar questions out there, but again none of which have helped me, even though it seems to be a simple problem.
My problem is the active state of the menu element on this page: http://dev.ateo.dk/om-ateo/
Its the "Om Ateo" and the "Ofte stillede spørgsmål" which will not become active elements in the menu, even though it is active.
I have set the body class and the body id to match the id's of the li element, but none of this seems to work in any way.
You have to apply some CSS on the class current-menu-item.
.current-menu-item {
font-weight:bold;
/* or anything else that you want*/
}
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
Hello there fellow stack exchange members hope your having a great day. Basically i picked up a project I never finished and started working on it. So far so good. Except until right now there's a CSS element that is giving me trouble.
Basically I have a menu bar with "Login" and "Register" if you inspect the code on Google chrome and select "menu" div the little highlight box shows up where it supposed to be but You cant see actually see it.
But in the "Matched CSS rules" if I uncheck "Float:right" and then check it again the element goes to where its supposed to go, which is confusing me right now.
Could someone take a look at it for me. I'm currently developing on a throwaway domain before i actually transfer it to the real domain
Looks like when you re-enable the float it's getting re-calculated in the DOM due to re-ordering. I think the root cause is that you have the div in the breadcrumb div instead of up a level in the homebar div.