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
The problem page is : http://www.redrocketwebsitedesign.co.uk/the-wiltshire.co.uk/membership#golf-membership
I have an issue with the links at the top of the post. Clicking on Golf Membership should take the page down a bit to the Golf membership section, the same thing should happen with Leisure Membership.
I don't seem to have these problems on another page with anchor links : http://www.redrocketwebsitedesign.co.uk/the-wiltshire.co.uk/junior-golf
Does anyone know what could be the issue?
Ids for anchor links should be unique. But for example you have two identical ids for golf-membership on line 304 and line 629. For some reason you have duplicate code.
And for leisure-membership you have one id, but two hrefs on line 303.
One duplicate code starts at 301
<h1>Become a member at The Wiltshire</h1>
And then again at line 626.
<h1>Become a member at The Wiltshire</h1>
But only one of them is displayed in the browser, no idea why.
I use Firefox to display source code and then find duplicates.
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 1 year ago.
Improve this question
I am making a website for a school project and i have this one same peace of html code pasted three times the first two follow the CSS fine but the last one doesn't even though they are all the exact same
an image of my html code
this is the code that i have pasted three times but for some reason the CSS doesn't apply to the last one so the page looks like this
an image of my output om my web page
I don't know much about HTML but from research on W3schools and on stack overflow i couldn't find a solution
For some reason you are opening an <ol> (in the middle of your first screenshot)
with a class named "list".
I'm pretty sure it's the reason why your third paragraph isn't acting normally. Close it or delete it and tell me if it worked !
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 4 years ago.
Improve this question
So I have an index page with products and when clicked it goes on another page with the prodcut itself ( i am extending the app.twig on the product page) and it takes all the elements from there to the product page. My question is there anyway to hide elements on another page if you have extended another page ?
I have discovered that if I create blocks than I call them in the page i dont want them empty it will erase them.
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 have a custom module that is supposed to display the home featured products on a custom dynamic cms page. So far, so good, the page is rendered, the products are in place but..
The link is:
https://florariata.ro/344-florarie-online-Prahova-Ploiesti.html
As you can see, the css is class="product_list grid row homefeatured tab-pane" but in the same time, the display used is the one from the list vie not from the grid.. By this way, the list is messed up and the products are rendered like they are now..
Basically, the description and name of product are doubled because both classes are displayed (grid-desc and list-desc)
Could someone explain what is wrong? I cleared the cache in all the possible ways known but still without success..
Could someone point me to the right way?
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'm trying to create a bulleted list of links using Markdown and Jekyll for my blog and getting some strange behavior.
Finally, many of the data sets that were used in the studies mentioned above are open source and freely available.
- [Visceral](http://www.visceral.eu/)
- [ImageNet](http://image-net.org/)
- [Kaggle Data Science Bowl](https://www.kaggle.com/c/data-science-bowl-2017)
- [Grand Challenge](https://grand-challenge.org/All_Challenges/)
- [Lung Image Database Consortium](https://imaging.cancer.gov/programsandresources/informationsystems/lidc)
- [Multimodal Brain Tumor Segmentation Challenge](http://braintumorsegmentation.org/)
Thanks for reading, and please feel free to [reach out](http://healthcare.ai/contact) with questions!
The output looks like this on my site:
The links within the bulleted list work correctly, but they are not underlined. The links within the paragraph are underlined. I would like all links to appear underlined.
Just add this (very ugly) code to your body/layout:
<style>
li a {text-decoration: underline!important;}
</style>
Or, even better, add only the CSS to your stylesheet.
If you have gotten this far, you probably also want to make it more specific, by adding a ancestor/parent class in front of the 'li a' selector.
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'm trying to use frames, but they aren't showing up. I tried using the exact sample (with srcs to my pages) from w3schools, but still when the page loads the frames don't. There's no error provided or anything. They just don't show up at all. I don't get it. I'm using Chrome if that helps.
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_frame_cols
Edit: I found that adding anything other than frames makes all frames disappear. Can a page not have anything but frames using a frameset?
No you can't have a body element and a frameset element on the same page. See W3C. Oh by the way, DO NOT use frames, they are evil.