How would one implement custom themes into a website that is not wordpress? [closed] - javascript

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 5 years ago.
Improve this question
So i'm building a website in PHP7, HTML5, CSS3, JQuery, JavaScript5 not WordPress to be clear. One feature i would like is to allow users to change their theme to something that is not default theme so how would one do this i mean making the theme and implementing them? Would it just be an element say a drop down box with CSS documents or something else?p.s. my other questions did not go down well so if this does not make sense or is unclear please let me know so i can improve it.

I didn't get your question exactly. But these are my opinions.
Generally , Custom Themes are added using themes(Non Wordpress) which you can download from sites like themeforest , envato market ,template.net etc. Either you can tweak it and make it your own or just use as it is. But if you do so please do have a glance at the licensing to avoid future problems.
And Dropdown menu can be made using CSS and JavaScript. I would say that its not a must. Its the content which makes it notable.

Related

How are these transitions and side effects on this 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 3 months ago.
Improve this question
I watched a video about awesome made websites. There was this website with a bunch of cool effects. You can visit the site over here: http://www.amandabraga.com/
Now i'm asking myself as a rookie in frontend development how all these effects are made?
A lot of these are CSS/JS transformations and hover animations - if the user applies a hover animation to the background class, on mouse-over it'll load in the animations using javascript.
If you're interested in trying something like this, check out Webflow. They allow you to create free website and they support some insane animations without having web design experience, or knowledge of coding. I've seen many similar websites created through Webflow.

Can I enable javascript directly from my site? [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 4 years ago.
Improve this question
I would like to know if it is possible with the help of a button for example, to allow the user to enable javascript or disable it (but only enable it interests me) directly from our site.
That is to say, I have a website that needs javascript for animations or whatever and I would like everyone to be able to access it.
So make available to people a button to enable javascript if it is disabled.
Do you know what I'm talking about?
Is this possible? Or am I dreaming?
And if so, do you have any leads?
Not possible, but the best you can do is add a <noscript> tag with a message specifically for people without JS enabled. A huge majority of people keep JS enabled and never change this preference though.
Example:
<noscript>
<h1>Please enable JavaScript in your browser for the best possible experience.</h1>
</noscript>

How to pin a website to windows taskbar programmatically using javascript? [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 4 years ago.
Improve this question
I can't use drag and drop method. I have gone through the jquery pinify plugin, but what I understood is that, it only encourage user to pin website using drag and drop using intelligent popups rather than doing it on it's own.
Is this even possible?
No luckily this is not possible.
Imagine the security reasons behind it. No website can change something on your OS. (At least that's what we all hope, that's why I say "luckily" we have a problem if this would not be like so).
Or imagine this: You create a website. The font is defined by designers and project managers which discussed which font and which font-size will be the best to represent the company on the web. So you created the website based on those requirements. But now, I have some issues with my eyes. This is why I setup my browser with a default font-size. This is what I need, to read any content from the web. Now, NO! You can not change this! Why? Because I have set something in my browser settings, also those are part of my "personal" settings. You can not look into them and you obviously can not change them. Hope this helps.

Code Required to achieve vertical slider effect in Wordpress (examples included) [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 6 years ago.
Improve this question
I'm wondering how I can achieve an effect similar to that of http://eng.getlost-getnatural.ru/ or http://rnbtheme.com/sixteenth/. I've contacted various support forums supplied through Wordpress and all they've been able to tell me is that I need to get a web developer and that the effect was possible. I, however, don't have the money for a web developer and went searching online to try to find what I was looking for and haven't been able to find anything yet. I can make code changes to my Wordpress site using javascript or css. Thank you so much to everyone who helps and answers!
What you are asking for could take a couple of hours to code from scratch, and then trying to match it to a wordpress site that we can't see or use as reference can create a lot of problems. I recommend looking at some jQuery plugins.
Here is a site to get you started, https://www.jssor.com/demos/vertical-slider.slider.
If you have any questions about the code once you download the plugin then we will be able to help you further.

How to use grid in HTML [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 assignment.
I want to create a grid with list of friends with their name and photo add search bar on top of it whenever you type their name, it should filter and show only that by default it should show all.
This can be easy achieved using JQuery and a 3rd party javascript library called "Datatables".
Basically you only need to create an HTML table with all the names and photos, then add JQuery and Datatbles libraries to your HTML and initialize it.
On this link:
https://www.datatables.net/examples/basic_init/zero_configuration.html
you will find the most basic code example to configure datatables.
As comment, this solution will indeed give you the results you look for, but if this is a homework maybe your professor is expecting to you to code this functionality from scratch and not using 3rd party libraries.
Regards.

Categories