Don't show long menu title [closed] - html

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a html and css but don't work in firefox ie,work only chrome.
Don't show long menu(MENU_LONGGGGGGGG) if container a menu.Show only
http://jsbin.com/isitij/1/edit
Please help me fix issue.

Add display: block to .genres li a span.

Related

Change scroll speed of specific element [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Okay, I'm not sure how to Script this... but either in HTML or CSS is there a way to set a faster scrolling speed to any specific item?
Try using JS:
function pageScroll() {
window.scrollBy(0,50);
scrolldelay = setTimeout('pageScroll()',100);
}
<body onLoad="pageScroll()">
You can see an example here.
For a CSS solution (ie parallax), you can reference this post.
For more information see this answer.

keep text in same position [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have a container-right in my html page in which there is a javascript slideshow and some text below.is there any attribute to keep the buttons and the text in same position even if the pictures have different sizes? Thanks in advance.
In your CSS use poistion:fixed; for the elements you want to fix

cgi waiting page [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
how I can do something like that:
http://online.vodafone.co.uk/en_GB/assets/static/ipi_please_wait.gif
thanks
Go to http://www.ajaxload.info/ and generate your own ajax loader :)

What is an inner page? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
And can you provide some examples?
From my understanding, an inner page is the page with the content, like the content div in the html, am i wrong?
It is hard to say without context, but it could refer to a page loaded inside a frame or to a page that is not the homepage for a website.

I want to open html page as popup window in my html page when i press button [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
please send any reference
<button onclick="window.open('http://www.google.com');">Open popup</button>