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*/
}
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 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 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.
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 am currently working on a website for a client, and the client specifically wants all PHP tables to be scrollable. Is there any way that this can be done? I have tried wrapping in a div and I tried adding it into the php stylesheet, but I am still not getting anything. So any help would be greatly appreciated thanks. It's a data table for live feed data.
I assume you get some data from a database through php and generates a html table through php with the data in it?
Wrap a div around the table with the following css
div{
height: 300px, // or another height
overflow: scroll
}
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 am desperately trying to remove the irritating HOME hyperlink from the header of my WP page. See here, in the upper left corner: http://almagest-centar.hr/?page_id=2 (this is Academica WPZOOM theme).
Is there any way to remove it? I've seen there has been a discussion about this (here), but it doesn't work. My functions.php doesn't contain the lines mentioned in the thread.
You are trying to remove breadcrumbs. Please delete from you view this code with all inside it:
<div id="crumbs">
</div>
Or you can also edit your CSS file:
div#crumbs {
display: none;
}
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
In my Wordpress page, there is a scroll bar at the bottom, which takes the page to an empty region to the left. I tried to inspect the element causing this but I couldn't.
Why does this happen? And how can I investigate the cause of this?
Thank you.
I've noticed you have left: -999em and some other declarations that pull your items way to the left. Usually this is done so the items are hidden from the viewport, which is fine.
To fix this issue, simply add overflow: hidden to your body {} in your stylesheet file, for example:
body { overflow: hidden; }