Need experienced css info [closed] - html

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>

Related

Dropdown menu like this in wordpress? [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
the client has requested that I make a dropdown menu that works like this in wordpress.
Does anyone know if something like this can be created and styled using the native wordpress menu section? I'm just not sure about having sub menu items also appear all under one dropdown section.
http://www.playtime.com/
Can someone please steer me in the right direction or offer a bit of guidance? I'd greatly appreciate it.
Thanks
Mike
https://wordpress.org/plugins/jquery-mega-menu/
This Wordpress plugin may or may not work for you. It hasn't been updated since 2012 but is worth a try, and you can do some very nice effects with it.
Demo site: http://www.designchemical.com/lab/demo-wordpress-jquery-mega-menu-plugin/
To see more menus like the one you described, try searching "mega menu" in Google.

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

Where to look for customizing [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
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/

Why is the page split into two? [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
I'm just combining css files from other templates but I can figure out why I'm getting a split in the pages. Please take a look here, might need to widen it up to see the problem.
http://jsfiddle.net/8xz8m/
It is hard to describe but when I re-size the browser I'm getting a very weird effect. Like two windows moving apart. Does anyone have any guidance I can follow to fix the problem?
Screenshot:
overflow:hidden is the main culprit. Remove it, and everything "magically" shows up again.