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.
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 days ago.
Improve this question
the tag I'm trying to edit
I need to link this element to a CSS tag to allow me to move it around my webpage, however the tag I've given it "GSCOPS" is not being read from my CSS file. I need to link the CSS rules to the element "GSCOPS".
After editing the CSS rules for GSCOPS in the given CSS file, it still isn't reading said rules into my webpage. a screenshot of the CSS code for GSCOPS
If anybody knows how I could link the CSS rules to the form in my webpage that would be great.
Thanks.
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 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 7 years ago.
Improve this question
I'v searched the whole time for about 3 days to make a round toolbar then i'v tried to do it myselt but i could'nt. Then my friend said to me about Stackoverflow that they are amazing at answering html Questions. And this what i want to do: Round Toolbar
If you searched for "round toolbar" that were propably not the best keywords for what you want, something like "css circular menu" is much more suitable.
One of the first results when using Google provides you with anything you dreamed of, giving the solution ready to copy&paste as well as explaining step by step how to get there:
https://css-tricks.com/building-a-circular-navigation-with-css-clip-paths/
There is even an online generator: https://sarasoueidan.com/tools/circulus/
and a guide on how to include the generated svg file so that it can actually be used as a menu.
Good luck!
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.