Moved an div item on the page [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 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.

Related

How do I put source code to Visual Studio code [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 1 year ago.
Improve this question
I saw a portfolio website on YouTube. In that the youtuber said "the source code is in the description using the source code you can take the whole coding in your system and edit to make it yours". Now I want to put the source code(html css) to visual studio code but I don't know how to do it. Can anyone tell me how to do it as soon as possible?
click on Add Folder after that browse which folder you want click it and open, done you can now edit your code

Add html/code in Magento HEADER [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 am new to magento, so i have little knowledge about it. I want to Add an Image or Html Code at the Header of Magento.I want this (http://prntscr.com/8c5ens) one to be placed here (http://prntscr.com/8c5eyy) .Can AnyOne guide me how to do it ?
You need to find the html template file.
One way to do that it's enable Template Path and Block Name hints:
Login to Magento Admin panel
Go to System->Configuration.
The Template Path and Block name will only appear for current website. So change the Current Configuration Scope to ‘Main Website’.
Go to the Advanced section and click on Developers.
Expand the Debug tab.
Set the Template Path Hints to ‘Yes’.
Set the Block Name Hints to ‘Yes’.
Click on ‘Save Configuration’ button.
Open Magento user panel and see the template path hints. It shows each file where the page element is located in.
Another way it's find the code in whole project (intuition needed):
Open developers tools of browser.
Find some specific pieces of code, copy it and try to find it through the whole project.
Probably it should be somewhere in app/design/frontend/ path.

How to have a a url be like example.com/projects/projectName? [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 7 years ago.
Improve this question
I would like to know how I can have a website that has links to deeper pages like so: www.example.com/ then I click on "Projects" (that becomes www.example.com/Projects) and then I click on a project (Which now becomes www.example.com/Projects/projectName/) How would I do that??? Please help, I really need these.
EDIT: Why are people down voting my question?
This is usually done with folders.
When you open www.example.com/Projects you are actually accessing www.example.com/Projects/index.html then let's say you want to access the project the folder Foobar so you type in www.example.com/Projects/Foobar/ and you are served www.example.com/projects/Foobar/index.html
However this can also be done with PHP URL rewriting and the use of a .htaccess fie.
Also when linking make sure that you start with a backslash (Absolute URLs) e.g.
href="/projects/test"
If the link was to "projects/test" and you were on that page then if you clicked on that link you would be taken to "projects/test/projects/test"
Well, usually to write a Web page you should learn html and then css. While learning html you will learn how to create a link.
In html a link is such as
my link

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. :(

I'm having some problems with a few images not loading but the rest are [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 working on a site and I am designing a landing page where you click on pictures and it will take you to a product page.
I have just hit a problem that I was asked to put a slider into the page above everything, I haven't yet started that and thought that i would upload the site for now to a test server to make sure everything is running OK.
Most of the page is but there are three images on one section (3/6) that just will not load. I've looked over the coding and cant seem to find any mistakes with the code.
You must provide some of your code referring to the images, then only someone can help you. Anyway there can be an issue that you were not providing the correct path for the image. Also, sometimes it happens issue with writing the format of the image in caps or small letter. It make work with image.gif but not with image.GIF for example. So, look into image property also and find the correct format.