Where to look for customizing [closed] - html

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Basically I'm customizing a code for a button:
<button type="submit"
id="buttonSaveAsDraft"
class="primary preview next button buttonAction"
title="Save and exit MessageCoder"
value="1">Save</button>
Upon clicking the button, it's taking me to a different website which I want to disable. In order to figure out, I started looking at the CSS used by this button ( I figured out about the CSS using dreamweaver). So basically, I'm doing control + F in dreamweaver and looking for the id buttonSaveAsDraft and classes "primary, preview, next, button, buttonAction" in the CSS but it's not showing up.
1) Am I doing something wrong here?
2) The CSS is a very long messed up file. Is there any way to properly format it and take a look at it?
Please clarify.
Thanks

The link you are looking for is in the HTML document. Try doing a Ctrl+F search for "buttonSaveAsDraft" to find out where it is linking and disable it there. Links are never created in the CSS file.
As for formatting the CSS, there are a number of sites out there that will make it look nice for you if you copy+paste it in. Check out this site for example: http://www.codebeautifier.com/

Related

Is it possible to open a html page upon clicking a 'Help' button in my C++ program? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am trying to develop a C++ program which also has a Help button on its menu bar. I'd like to know if it is possible upon clicking this button, if a html document can be opened on the browser, and if so could you explain how to please? I tried researching this but to no avail. I intend to use the html document in conjunction with CSS and JS too. Many thanks!
On Windows, you can do:
ShellExecute (NULL, __T ("open"), url, __T (""), __T ("."), SW_NORMAL);
where url is the page you want to open (e.g, __T ("https://stackoverflow.com/")).
This will open the page in the default browser (initially Edge, but users can change it).

Moved an div item on the page [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I would like to move an item from my shop page. I moved it with google inspector tool, but i don't have any idea to move it like that in my real site.
Any ideas?
Thanks a lot
enter image description here
enter image description here
When you modify your code with google inspector, it is only to test it and see how it looks, but the changes are not saved.
If you want to save your changes, you need to open the files of your website (HTML, CSS...) directly into a code editor. Some great text editors are Sublime, Visual Studio Code or Atom.
Once you have opened your files inside your code editor, you can edit your code and save it. In your case, it seems that you would want to select the full <div>...</div>, cut it and then paste it a few lines below.
I hope this helps. Let me know if you have more questions.

Need experienced css info [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a weebly site and am adding css buttons. It uses html and css. I got it to work but I need to make it go to a link when someone clicks it. I have tried everything and there is nothing on it on the internet....I have tried searching all day and still nothing.
Here is the buttons I have: codepen.io/anon/pen/avOJmz . Can someone please give a detailed area of where to put it and a code? I am a beginner in HTML and need some help from a friend. I dont think this will be a complicated question, but i just dont have much knowledge in this. THANK YOU MUCH
You can use the href attribute to add a link to an element. In the a tags, instead of href="#", use href="yourlink.com". For instance, the button for demo will look like:
<li>Demo<span class="round">Take a look. This product is totally rad!</span></li>

How is web page changing within the same website done? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
For example, let's say we're at the homepage at www.fakewebsite.com and, when we look at the footer at the bottom of the page, we can see that there is an "About" button that you can click on--which you do so you get to know more about the company. The website refreshes and enters into www.fakewebsite.com/about. My question is this: How is this done? I'm pretty new to the web developing world and would like to know what is done to make this possible (So, I can do it too).
What you need is known as an anchor and does not require ajax. You should start by searching info on that.
It looks like this:
about
This is done via an anchor element where the files are linked via a path in the href of the tag for example:
About
More info here: anchor
You can also study this starting with HTML + CSS and this Getting started with HTML

Is there any way to get all of the css just from a single page? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am wondering there is a tool such as a Google Chrome extension out there that will get all of the css displayed on the current page, and nothing else. For instance, when you use the developer tools in chrome and get the css you have the option to get the classes you hover over and it's neighbouring classes, or the ability to see the full CSS file for the whole site. I am looking for a way to get ALL of the css used on the current page and displayed all together, instead of me having to manually check each div and pasting it into notepad.
I figure there must be something out there that does this. Any help is appreciated.
I haven't tried these myself, but Pendule and Quick Source Viewer look promising.
I would just post this as a comment but I don't have enough rep. :(