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; }
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 3 years ago.
Improve this question
My WooCommerce product pages displays each product tab seperately and underneath eachother, which is good. The only problem i'm facing is that each tab displays all the tab names. I'd like to only display the name belonging to the tab.
Example
So far, i looked into the tab templates, tried some function snippets. Nothing worked so far.
you can hide by css
.ec-tabs>li.active, .wc-tabs>li.active {
display: block;
}
.ec-tabs>li, .wc-tabs>li {
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 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 7 years ago.
Improve this question
Hi im working on a wordpress blog and have the following problem:
http://www.catlovers.co/17-cat-reactions-that-sum-up-your-love-life/
If i resize the browser (X-Axies) to a minimum like surfing on a mobile device i am able to scroll to the right in the Contend section (hold down middle mouse button).
How can i change my CSS to disable this kind of scrolling?
I think my problem has something to do with the "post-container" class. Is the "overflow:auto" a possible problem?
Try This: in your css
#media only screen and (max-width: 479px){
.post-container{overflow: hidden;}
}
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
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*/
}