How to make a Round Toolbar for a Website [closed] - html

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!

Related

HTML - Display specific image by clicking button [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've tried a couple hours to fix my issue, but I'm confused about the Keyword to find it
I've see a link that can show specific images like this :
what's the keyword of this method?
This seems pretty vague, but you could use Isotope for the functionality you are looking for. It might be overkill, but it will allow you to build out what you have in your screenshot.
https://isotope.metafizzy.co/filtering.html
There is a getting started area to jumpstart you into building it out too:
https://isotope.metafizzy.co/#getting-started

URL string parameter to choose specific HTML Tab and add some text [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 6 years ago.
Improve this question
Getting my head banging since this morning to do this simple (I think) thing:
I want to create a link (manually) that automatically selects the third Tab and adds some text to this webpage:
http://www.acessibilidade.gov.pt/accessmonitor/
I've tried some ways, including http://www.acessibilidade.gov.pt/accessmonitor/?#form3 but to no avail... what I am really missing here? Is even possible?
Thanks in advance.
If you dont have access to edit this page's source code then you cannot do what you are suggesting with a simple url or querystring value.
If you could edit the page then you could add some JavaScript or server side code to open the tab you specify in the query string/url.
Fancier solutions include proxying the site and injecting your own javascript or simply re-writing the html but this isn't really recommended as any such solution would be very fragile and the owner of the original site may not be too happy with you doing that.
You could also use a browser automation tool like selenium.

Why is none of my CSS working? [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 6 years ago.
Improve this question
So my layout (a club layout designed for a particular part of a website) was working fine, and then I added a background image and none of the stylesheet has worked at all. I've read over it like 5 times and cant see the error myself it may be something so simple and probably a complete rookie error but help would be much appreciated!
http://collabedit.com/98yhh - The Code
http://www.marasites.com/?name=iSell&page=divinitynewlayout - Live Site
Oh and ignore the extra CSS that isnt being used yet about to implement and fix all that up. Thanks!
You cannot have a new line after your first quotation. Keep it in one line.
background-image: url("http://i.imgur.com/lfnb83g.jpg");
Move
background-image: url("http://i.imgur.com/lfnb83g.jpg");
On to one line and it works fine!

Why wont my website show up? [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 have create my website and have a domain but when I type the domain name into the browser I get some weird page. I am using 000webhosting and just uploaded the files and they said they were good. I am not sure what is the problem but here is the link
hudsonreamer.com
Hopefully I can get some help
Thanks a lot for the help
Check your DNS/Nameserver records to link files to domain.
Not really covered here however you may want to watch a youtube tutorial on setting up a hosted website.

Why does the HTML site flash when clicking the 'Home' button on my website? [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
When I click the 'Home' button on my site (beta.tradeacademy.org/dashboard), it shows the links and search box without the css for a split second - as shown in the attached image. Can anyone explain why this happens?
Thanks in advance.
That's called FOUC.
Your CSS files are being fetched much later. Please refer the waterfall.
Try to fetch the CSS in the html head.
The CSS file may not have been loaded prior to the HTML, and therefore not rendered.
Changing the load order would mitigate this issue.
See css loads late, so html looks weird for a second for possible solutions to this.