Change csv output from one column to multiple in html - html

I have tried to find an answer but am not finding what I am looking for. I am using hostinger to host my website and using their built in design software. Their csv output creates a csv file with all parameters in one column instead of each parameter in its own column. I believe programming is in html and I don’t have access to base code but I can add to the “header” of the code with custom code. Does anyone know what will help me to solve my issue?
I haven’t tried anything yet as I’m not very familiar with html and Hostingers support team told me to look here as they specialize in hosting and support of that, not programming.

are you using their Website builder and a pre-designed templates ?
if you think the problem come from website template, you can delete that section and use custom html code
https://support.hostinger.com/en/articles/6475646-website-builder-how-to-customize-a-website-template#h_ed99b23b6a
There are two ways to add HTML code to your website, and it depends on the type of code you want to add.
If the code needs to be added to the part of your website's source code, use the Custom code field in your website's integration settings.
If the code needs to be added to the part of your website's source code, use the Embed code element.

Related

Adding functionality to Proto.io html files

I have made an prototype on proto.io, and have the html code generated for it by proto.io itself.
Now my question is can I use this HTML code and add functionality like connecting to server and retrieving data?
Thank You.
This is very old, but I ran into the same question and figured out it's not so easy to get clean, usable html & css code from (mockup)tools that auto-generate code. The generated html-code from proto.io will hardly be usable for connecting to a server or similar, because it's full of other code proto.io uses.
Macaw, Webflow and Protoship (in the paid version) seem from my research to be such tools (not tested).

comparing 2 html files to check for added and deleted classes

I am developing an application for SharePoint and I am referring the HTML provided by other team and
I have written some code to generate HTML content using JavaScript as I have to write the tags to fetch data from server which will be given to SharePoint server which renders my html. But there are some drastic changes made to html which now I need to re-write my JavaScript to render them properly referring to new HTML given. What would be the easy way to compare 2 HTMLs and find the new classes and deleted classes. Are there any tools which can help here?
Bottom-line is the ability to compare 2 HTML files and get the new classes, deleted classes and updated classes easily.
I use an application called Notepad++ its freeware and helps me a lot
There is also WinMerge you can use

How to locate an HTML file on localhost using Google Developer Tools?

I'm building a website using Wordpress on Localhost. I'm learning the structure of the webpage by editing the HTML and CSS using Google Developer Tools. I want to know which file I'm editing and where on the hard drive it is located.
I have edited the height and width of an element inside the circle marked but when I try to save the file, it asks me for a location to save which I'm unaware of. One the left is the HTML code, how can I locate the file with that HTML code?
how can I locate the file with that HTML code?
You can’t – not really, not from within your browser, because your browser doesn’t see individual “files”, it only sees the complete HTML source code of the one resource it requested, that might have been composed of lots of different files, plus functions that generate HTML code dynamically – so that actual piece of HTML code might not even be written as such within a file.
You might be able to identify different sections of the HTML document though – and with a little knowledge of the template structure and output logic of WordPress, you should be able to find out what the relevant file to look in might most likely be.
Another thing I’d suggest, is that you get yourself an IDE that allows you to search across all files in the whole project folder – and than look for certain class names, IDs etc. on the HTML element in question or near/above it. If you search for those, you might get lucky as well. (Although a lot of times those classes/IDs might be output dynamically as well, so you won’t find them inside of a template file as such.)
Especially with little knowledge of WP template structures, it might take some trial and error to find the piece of code and file you are actually looking for.
The Google Developer Tools is not a code editor, so whilst you can try out different options I'm not aware that you can save it, and if you can, I wouldn't say it's a good idea.
Wordpress uses PHP, a language which HTML code is embedded with PHP code. For example the code <a href='<?php echo(link1);?>'>Home</a> has had the href attribute embedded with a PHP variable. If you want to find the HTML code, look at the PHP files in your Wordpress directory, index.php is the landing page code.
One thing to bear in mind is that not all the HTML code will be included in one PHP file, it is usually included from several files, and much of the content will be in the wp-content directory, keep an eye out for the PHP include or require commands.
Google developer tool is just to check, once you are done with the editing, You have to copy your css code- and paste in your css file.
To get the css file look at the below image.
Hope your question got clarified!!

how to convert html template to joomla template?

I have a html template that has multiple pages like home, about us,contact,services,... and I want to convert it to a joomla template.I spent a lot of time for searching a good tutorial in google like this:
http://www.learning.asarayan.com/education-website-design/joomla-training2/334-convert-html-to-joomla-template
but non of them can answer my question: how can I convert ALL pages of html to joomla??I mean that I can convert one page for example home to joomla and define its position but what about other pages?
can anybody introduce me a COMPLETE tutorial???
sorry for my poor english
thanQ
You may start with tutorial posted at below address
http://www.tobacamp.com/tutorial/5-easy-steps-converting-html-template-to-joomla-template/
There is no automatic converter or out of the box solution for this, neither any tutorial to help you.
The best way to sort out the issue is by duplicating the template with the help of Artisteer. You can just recreate the template design and feel with Artisteer. Download link: www.artisteer.com/?p=downloads
You need to change your mindset from that for a static template to that for a dynamic template.
In joomla templates there is a base layout called index.php as you know. But that is very skeletal usually, is just defines some locations on a page, includes your css and javascript that is common to all of your pages. This gives your site a common look and feel and ensures a good user experience.
For your css for the individual pages you would normally just include that in the template.css file or similar.
Within the index file you will see places that say jdoc:inlcude. These are the places that actually include the layouts that provide detailed html for specific blocks on the page, typically there will be one component jdoc (there cannot be more than one) and many modules and module ones as well as some others.
The html for these documents is found in the components/com_componentname/view/viewname/tmpl folders.
To override the core layouts you use the template override system by placing same named files in the html folder of your template. You can look at the included templates to see how this works. There is pretty good documentation of this on the joomla documentation site.
http://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core will get you started.
Also this may be a point of confusion. In a CMS you strive to separate content from presentation. So if you enter the core information in the cms, i.e enter the contact information in com_contact, and enter most of your current content into individual articles you will start to see how it actually works. I would usually recommend first entering all of your static content into the appropriate places, then work on making the rendered pages look exactly the way you want them to.

Android: How do I retrieve problematic data from a specific webpage?

I have used .NET and ShDocVw for years to grab data off webpages without any issues I couldn't overcome. This website has me beat though. It seems like such as easy task to grab the titles and other information off a library search page, but I can't see the data to be able to grab it. Usually, I just look in the DOM, but the data wasn't there. I did a view source, but the data wasn't there. I am so confused.
I am learning Android right now and that is how I would like to solve my problem, but if .NET would be easier... Right now I will take any help, in any form.
The URL is http://catalog.kcls.org/opac/en-US/skin/kcls/xml/rresult.xml?if=&it=h&bl=&lf=&a=&la=&cl=&d=1&l=1&s=pubdate&sd=desc&adt=ml&tp=&t=bibcn%3ADVD%20FIC%20ON%20ORDER&av=&rt=multi
For this specific website, if you disable javascript in your browser, you will see they give you a link to a plain html search portal
http://catalog.kcls.org/opac/en-US/extras/slimpac/start.html