Hello,
I would like to pull the share site thumbnail from:
http://www.facebook.com/share.php?u=my_website_url
inside the tag
<div class="UIThumbPager_Thumbs">
I would replace "my_website_url" with a given URL.
Thank you! :)
...
Possible Duplicate:
How do you disable browser Autocomplete on web form field / input tag?
I have implemented my own autocomplete via jQuery but the browser covers up the first option with its own autocomplete info? Is there a way to turn off this field's autocomplete from the server side?
...
Hi
I use a website, which shows information i have no use for, so i tried to hide some of it with Stylish, an addon for Chrome to insert custom CSS.
I will try to explain better.
<div class="splitscreenleft"> <div id="toplevel"
<div class="splitscreenleft"> <div id="coursesection"
I want to hide one of those. Everything above split...
I'd like to give the like generated with an Html.ActionLink an HTML id so I can change the CSS depending on where I am. I have a masterpage with a set of links and I'd like to distinguish the active "Tab" with Jquery changing the css of that active #id
Right now I'm using
<%: Html.ActionLink("Some View", "Index", "controller")%>
It g...
I know this question has been asked a hundred times, and I feel like I've looked at all 100 posts, but this is driving me nuts.
I swear this is the last IE7 compliant site I will ever do. Too much money wasted. I invite you to do the same. I'm still waiting for my check from Microsoft as a sorry for all the money you've lost developi...
Hi There,
Usual CSS centering issue, just not working for me, the problem is that I don't know the finished width px
I have a div for the entire nav and then each button inside, they dont center anymore when there is more than one button. :(
CSS
.nav{
margin-top:167px;
width:1024px;
height:34px;
}
.nav_button{
height...
I've got a list with floated list items which should use the standard bullet. But in IE7 only, these bullets don't appear:
Here is the all the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" ...
I'm trying to emulate this effect: http://meyerweb.com/eric/css/edge/complexspiral/demo.html on my blog: http://segment6.blogspot.com/
It works, but with one problem: Firefox lags really badly scrolling the page. If I make the background attachment not "fixed", it no longer lags, but the effect doesn't work. Can this effect be achieved ...
Hi,
I am trying to get the list item's bullets to move up. As you can see in the image below the red is where I would like everything. The bullets and the dropdowns need to move up. These fields are dynamic and come from a db. Pretty much I want it to look centered and nice and can't figure it out.
Thanks for any help,
Antoni
![alt...
I'm wondering if there is anything like Django's HTML templating system, for for CSS.. my searches on this aren't turning up anything of use. I am aware of things like SASS and CleverCSS but, as far as I can tell, these still don't solve my issue as I want to dynamically generate a CSS file based on certain conditions, so that a differen...
I am trying to create a div on my site that is supposed to work like the descriptions on Ebay where all the css styles of the main site are stripped off and then whatever styles are in the div are what style the div (if you can understand what I mean). I've been trying to use a reset stylesheet, but my problem is that the reset is also r...
I'm building a tab bar in css, and want it to be able to handle having more tabs than can be shown on the screen. My HTML is structured roughly:
<div id="tabbar">
<div id="tablist"></div>
</div>
css:
#tabbar {position:absolute;width:100%;height:24px;overflow:hidden;}
#tablist {position:absolute;top:0px;left:0px;height:24px...
Here's my issue: I need to set the font-size of an element to match the font-size of another element, dynamically (in javascript).
This works fine when the browser isn't zoomed in/out.
When the browser is zoomed out, however, this occures:
window.getComputedStyle(element, null).getPropertyValue('font-size'); // 14px
element.style.font...
A lot of what I continue to read about graceful degradation applies to browsers that don't use JavaScript. But my own experience shows that it's no longer reasonable to expect a normal experience on the Internet without JS and CSS support. How much energy is it responsible to devote to degradation these days?
...
I have such html code
<div>
<p>MY Text <a href="url">Text</a>
</p>
</div>
I need using CSS or jQuery disable all A elements in DIV, when user move mouse over Text the URL is not active and he can't click on it. How to do that?
...
Hi,
i want to align 4 div boxes so that they are in a 2x2 layout like this
1 2
3 4
My code looks like this
<div style="width:300px;height:300px;float:left;">
DIV 1
</div>
<div style="width:300px;height:300px;float:left;">
DIV 2
</div>
<div style="width:300px;height:300px;clear:left;">
DIV 3
</div>
<div style="width...
I'm using a general fixed footer, but no horizontal bar in IE7 when page stretched.
css
div#footer
{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 18px;
}
@media screen
{
div#footer
{
position: fixed;
}
}
*html body
{
overflow: hidden;
}
*html div#bodyContainer
{
height: 10...
Hi,
I'm stuck on a very strange problem, and I can't figure out what exactly is happening...
Unfortunately, I cannot link to the page in question, as it is under internal development, but the problem is as follows:
I have page with 3 links - A, B and C.
Each of these links to dynamically generated files, and it can easily take several...
I have a wrapper div which is positioned absolute. Is it possible to extend the height of the wrapper div to accommodate the content and show the background color. Below the code I used:
CSS
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
border: 0px;
}
body {
font-family: Arial,sans-serif;
font-size: 2em;
l...
Is there a way to specify text to appear on the bottom and header of every page when printed?
or
Is there a CSS solution which would allow a header and footer to repeat on each printed page?
thank you
...