How to remove HOME link from WP header? [closed] - php

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;
}

Related

Can you help me in a color problem in WordPress? [closed]

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 days ago.
Improve this question
I have a manhwa website called kmanhwa.com but I have a problem. When people open my website they see original template color then they see the color that I modified from the original.
And when I had try before automatic adsense all template has changed color to the original and I cancelled the auto ads.
For me I don't know resource problem but I think that's start happening when I try to optimise the website with 10web booster and speed boster but I'm not sure.

Open cart footer.twig file changes not reflecting [closed]

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 5 years ago.
Improve this question
I am working on a site http://www.lemongrasshouse.com.au/ i am changing code inside /public_html/lemongrasshouse.com.au/catalog/view/theme/lemongrasshouse/template/common/footer.twig
but its not affecting the site.
Can anyone help me in this matter
Thanks
Somdeb
Have you also edited that twig file via the built in editor in Design > Theme Editor? If so, it will use that one (which is stored in the database) rather than the file itself.

CSS bug. A line appeared and I can't make it dissapear [closed]

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 coding up a page and I have placed a form in a container-fluid div. And it made a line to appear and I can't make it dissapear.
This is the page : http://sacim-design.esy.es/contact.php
This is a screenshot with the border : screenshot
Remove html tag <legend>or restyle it
CSS
legend{
border:none;
}
Beware, you are using bootstrap styles..to make your custom styles you
need to overwrtite them
Your problem is an empty <legend></legend> tag inside your form. It has a border-bottom rule. Just remove this element.

CSS disable horizontaly scrolling - Wordpress [closed]

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;}
}

Very long horizontal scroll to the left in my page [closed]

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; }

Categories