|
|
stackoverflow.com
- 2013-04-05 13:24:30
- Similar
- Report/Block
I'm trying to position a span so that it will be above it's sibling and "hang over" or be positioned on top of it's parent. The parent is relatively positioned. Please view my fiddle to get the whole picture What it currently looks like... This is what I want it to look like... The span (tooltip): .grid-window span.validation-message:aft...
|
|
|
stackoverflow.com
- 2013-02-08 13:47:39
- Similar
- Report/Block
Consider a simple example with html and CSS .parent{ position:relative; background:red; width:200px; height:40px; .child{ position:absolute; top:40px; left:30px; width:70px; height:70px; background:blue; to place a DIV with absolute position just beneath its parent (with relative position). In this example, I equaled the absolu...
|
|
|
stackoverflow.com
- 2012-04-10 23:54:04
- Similar
- Report/Block
Input: a list of an unknown number of span elements, contained within a parent span. e.g. <span id="parent"> <span id="child-1">1</span> <span id="child-2">2</span> <span id="child-3">3</span> <span id="child-4">4</span> <span id="child-5">5</span> <span id="child-6">...
|
|
|
|
stackoverflow.com
- 2013-02-27 11:58:44
- Similar
- Report/Block
I thought a general rule is that, whenever a div foo has position: relative , then if none of the parent and ancestor has any non-static position (so need to have one of relative, absolute, or fixed ), then, the div foo now will be position relative to the overall document. But in the following page: http://jsfiddle.net/4RcEn/6/ some...
|
|
|
stackoverflow.com
- 2013-03-22 22:30:30
- Similar
- Report/Block
I'm using the Bootstrap framework, and I have a parent div containing an image with a position of relative, and a child div containing an image with a position of absolute. I'm using left and top with percentages to push the child div to the bottom right corner of the parent div. In Chrome and Safari everything works as expected with the...
|
|
|
stackoverflow.com
- 2012-07-24 17:58:23
- Similar
- Report/Block
I'm used to work with jQuery. In my current project however I use zepto.js. Zepto doesn't provide a position() method like jquery does. Zepto only comes with offset() Any idea how I can retrieve a offset of a container relative to a parent with pure js or with Zepto? Thank you in advance.
|
|
|
stackoverflow.com
- 2012-03-19 04:20:26
- Similar
- Report/Block
I am debugging this ajax for quite a time now. I have this on my jQUery file: $("#typeForm").ajaxForm({ success : function(html){ alert(html); }).submit(); This calls service.php , and within it I have this: $data = array('upload_data' => $this->upload->data()); $str = "<div style='position:relative'><img src...
|
|
|
|
stackoverflow.com
- 2012-03-09 18:29:22
- Similar
- Report/Block
I have the following codes, which I realize that only the top 1% of elite programmers will understand: <a><span class="jquery-icon-stuff"></span&g t;Link Text</a> IE6 refuses to render said elite codes (presumably out of respect). However, when I add the following codes: <a>Link Before</a> <a><span...
|
|
|
stackoverflow.com
- 2012-05-26 21:46:51
- Similar
- Report/Block
I am importing some html into a dom document ans use xpath to extract the html part I am interested in. See below: $dom = new DOMDocument(); @$dom-> loadHTML('$myHtmlFileHere'); $xpath_dom_doc = new DomXPath($dom); $dom_object = $dom_document-> query('myPathHere'); Here below the html structure "returned": <div>GROUP A</div> &...
|
|
|
stackoverflow.com
- 2012-04-26 14:28:52
- Similar
- Report/Block
Is it possible that we can write text on image using html or javascript. I have done this Created an em tag and create spans inside it and now we can write any text in spans and adjust the position of em tag such that it appears over image. Set the z-index of em tag to be larger value then image. Then it appears that text is written over...
|
|
|
stackoverflow.com
- 2013-05-04 14:32:21
- Similar
- Report/Block
Here is my HTML code. I've tried entering a z index but it didn't work. The menu is in the right place but it doesn't slide open like it is supposed, and the items are overlapping. Help or suggestions would be greatly appreciated thanks :) Here is the CSS for the dropdown menu .click-nav {margin:0px auto; width:123px; position:relative;}...
|
|
|
stackoverflow.com
- 2012-06-16 13:51:50
- Similar
- Report/Block
I want to pass a variable defined in an include file, identity.php , to the parent file, which I'll call parent.php . When I include identity.php via it's relative path, the variable is available to the parent.php file. When I include identity.php via it's absolute path (to the application root), it doesn't work. Why is this? File: iden...
|
|
|
|
stackoverflow.com
- 2013-03-22 10:49:40
- Similar
- Report/Block
$("#page-circle").mouseover(function(){ $(this).find('span').animate({"opacity": 0.4},{queue:false}); }).mouseout(function(){ $(this).find('span').animate({"opacity": 0},{queue:false}); }); this problem is only in chrome browser; the span parent overflow is set to hidden; here is span css: #page-circle span{ position:absolute; height:...
|
|
|
stackoverflow.com
- 2013-04-21 12:29:10
- Similar
- Report/Block
I have a database table storing IP adresses, wich look like this: E_ID IP MASK I want to make it to look like this: E_ID Parent_ID IP MASK So that I can easily get my IP adresses tree: 80.17.0.0/18 (id=1 parent id = -1) 80.17.0.0/24 (id=2, parent id=1) 80.17.0.0/27 (id=3, parent id=2) 80.17.0.0/31 (id=4, parent id=3) 80.17.0.2/31 (i...
|
|
|
stackoverflow.com
- 2012-03-22 05:11:34
- Similar
- Report/Block
I want to set background image to right and top of my span because my language is right to left. it's fine in firefox but in IE, is not. Result in IE: Result in FF: here is my HTML code: <span class="info"><?php echo $GLOBALS['artcount'] . $ArticleCount;?></span> <br /> <span class="info"><?php echo $GLOB...
|
|
|
stackoverflow.com
- 2013-03-11 12:32:55
- Similar
- Report/Block
I have a plugin in which I provide a simple div container and the plugin creates all kinds of dom elemnents inside the container through javascript. The basic structure that the plugin creates is something like this: Wrapper Div (Position:Relative) - Left Container (Position: Absolute) - Left Top sub-container (Position: Absolute) - R...
|
|
|
stackoverflow.com
- 2011-09-29 15:06:40
- Similar
- Report/Block
In Symfony2 (2.0.3) I have a BetaBundle that is set as the parent of a AlphaBundle. Is it possible to override some routes while still keeping the parent originals routing definition ? I have tried importing the parent routing.yml inside the child routing.yml file but it naturally result in a circular reference exception. Is there any st...
|
|
|
stackoverflow.com
- 2012-09-10 14:07:58
- Similar
- Report/Block
I'm trying to create a CSS fluid tab menu , with a variable number of tabs (similar to what can be seen in Windows, where tabs expand depending on length of contained header, see below). Here is an example, I have setup (I need to keep element structure): <div class="test"> <div class="element"> <h3> <span class="d...
|
|
|
|
stackoverflow.com
- 2012-07-04 08:38:10
- Similar
- Report/Block
I have a ul with the following structure <ul> <li> text goes here <span></span> </li> <li> text goes here <span></span> </li> </ul> Now initially the span tag is empty . Im trying to add a number into the span tag using the jQuery .html() function ,Works fine however in Chrome th...
|
|
|
stackoverflow.com
- 2012-04-12 11:23:48
- Similar
- Report/Block
When a user clicks the checkbox the counter #counter +1, thats fine, but when he unchecks it does not -1 for the same checkbox. I want to +1 when they click a particular checkbox and when unchecking -1. --JS-- $('.CheckBox').toggle(function(){ $('#Counter').html('( '+i+' Selected )'); i++; }, function() { $('#Counter').html('( '+i+'...
|
|
|
stackoverflow.com
- 2012-03-02 07:59:35
- Similar
- Report/Block
I have the following code: <span> <svg height="32" version="1.1" width="32" xmlns="http://www.w3.org/2000/svg" style="overflow: hidden; position: relative; left: -0.0166626px; top: -0.983337px;"> <desc></desc> <defs/> <path style="" fill="#333333" stroke="none" d="M15.985,5.9...
|
|
|
|
truongton.net
- 2013-03-04 14:02:53
- Similar
- Report/Block
[TOP 7 CON NGOAN TRÒ GIỎI ] Hạng 1: Nhân Mã Hạng 2: Thiên Yết Hạng 3: Song Tử Hạng 4: Bạch Dương Hạng 5: Sư Tử Hạng 6: Ma Kết Hạng 7: Kim Ngưu [Chòm sao sử dụng tiền đáng sợ nhất] Hạng 1 Sư Tử Hạng 2 Nhân Mã Hạng 3 Bạch Dương Hạng 4 Ma Kết Hạng 5 Thần Nông - Nguồn: mn12cs...
|
|
|
stackoverflow.com
- 2013-03-04 10:11:34
- Similar
- Report/Block
The following happens on Mobile Safari iOS 6.1.2 Steps to reproduce Create a position: fixed element with an element inside it. Actual result Input - not focused The position of the fixed elements is correct when input is not focused. Input - focused When the input is focused, the browser enters a special mode in which it does not updat...
|
|
|
stackoverflow.com
- 2012-05-08 23:01:09
- Similar
- Report/Block
I have a textbox container div (.tb) with position relative, containing the input and placeholder div, these both have position: absolute. The problem is that the input text is centered (vertically), the placeholder text isn't centered (vertically). So I need the placeholder text to be vertically centered, just like the input. HTML: <d...
|
|
|
|
stackoverflow.com
- 2012-06-28 09:41:27
- Similar
- Report/Block
OK. I have a fixed position header that contains a nav with three absolute positioned li a elements displayed inline. The tags are meant to fire the following script and scroll to the appropriate anchor: <script> function goToByScroll(id){ $('body, html').animate({scrollTop: $(id).position().top},'slow'); $mainNavLiA.click(funct...
|
|
|
stackoverflow.com
- 2013-05-08 23:44:28
- Similar
- Report/Block
With Twitter Bootstrap's Carousel.. .carousel-inner { position: relative; width: 100%; overflow: hidden; causes a dropup button.. Cart Baker's Dozen (13) Two Dozen (24) Three Dozen (36) Four Dozen (48) Five Dozen (60) ..to be cut-off on the right-side http://imageshack.us/photo/my-images/197 /dropup.png/ Is there a javascript way...
|
|
|
stackoverflow.com
- 2012-04-18 11:55:28
- Similar
- Report/Block
I'm creating a button (actually just a link), which design is rather complicated, and as I am optimizing for IE8, can not be made with CSS3. I have therefore placed a <span> inside the <a> , and put a background image on both. The image changes on :hover :active . It works pretty great in all browsers, but not so much in IE.
|
|
|
|
stackoverflow.com
- 2013-03-21 00:56:14
- Similar
- Report/Block
I wrote an html page, with some css in a separate file and it worked fine. Then i realized that i should add a doctype declaration to my html. I did that and my page was completely messed up! I tried all types of declarations but all ended up the same!!! This is my html (currently only working with Chrome, and without doctype): Luca Rood...
|
|
|
stackoverflow.com
- 2012-02-28 05:06:57
- Similar
- Report/Block
I am trying to render the following with knockout. <!-- ko with: address--> <!-- ko if: address1--> <span style="display : block"> <span data-bind="varchar : address1"></span> </span> <span style="display : block"> <span data-bind="varchar : address2"></span> </span> <!-- /ko...
|
|
|
stackoverflow.com
- 2009-10-10 06:58:46
- Similar
- Report/Block
I need the text of a link wrapped with <span> as in: <a href="/foo.html"><span>Edit Group</span></a> Can I do that with Html.ActionLink? This doesn't work: <%=Html.ActionLink("<span>Edit Group</span>", "Edit", New With {.id = "bar"})%> It just HTML encodes the < > Is there a...
|
|
|
|
stackoverflow.com
- 2011-04-20 20:50:09
- Similar
- Report/Block
Html Structure <a> <span> <!-- Span has width & height --> <img> </span> <span> Some text <span> </a> Anchor is not clickable only in IE7, I know the issue happens because of hasLayout, if we remove height & width of the span, it will work fine. But I need to make it wo...
|
|
|
stackoverflow.com
- 2011-04-10 01:30:35
- Similar
- Report/Block
EDIT: Figured it out. I should be doing ("span.age", :content => ...) I am getting the following error when I run this rspec test response.should have_selector("span.age", :age => work1.age.to_s): Failure/Error: response.should have_selector("span.age", :age => work1.age.to_s) expected following output to contain a &...
|
|
|
stackoverflow.com
- 2012-05-15 11:21:52
- Similar
- Report/Block
This is how my code looks like but the problem is: when I click on the collapsed button (the one with 3 horizontal lines), it won't open on the 1st click, but only on the second click. Why is that and how to fix it? 22 <!-- BOOTSTRAP NAVBAR --> 23 <div class="navbar navbar-fixed-top"> 24 <div class="navbar-inner">...
|
|
|
|
stackoverflow.com
- 2012-04-21 13:08:00
- Similar
- Report/Block
How can i group two DIV inside a SPAN (one below other and div contains text and have fixed width) and display multiple span like this in fixed width 'td' tag. I am able to do so, but my span are overlapping. If the space in a line is full then the next SPAN should come in next line. Thanks in advnace...
|
|
|
stackoverflow.com
- 2012-03-10 23:47:41
- Similar
- Report/Block
How can I get the JFrame in which a JPanel is living? My current solution is to ask the panel for it's parent (and so on) until I find a Window: Container parent = this; // this is a JPanel parent = parent.getParent(); } while (!(parent instanceof Window) && parent != null); if (parent != null) { // found a parent Window I...
|
|
|
stackoverflow.com
- 2012-04-14 16:48:53
- Similar
- Report/Block
I have the following but $("span#slogan").fadeIn("slow"); does not run after the if statement has finished looping through the hidden elements. How can I make it so that fadeIn is the last thing to run? <style type="text/css"> #hidden span{ display:none; float:left; font-size:20px; </style> <script type="text/javascript...
|
|
|
|
stackoverflow.com
- 2012-03-31 14:31:02
- Similar
- Report/Block
i have a radiogroup, in which i am selecting any one from the group. same time while i click on any radio button from the group, i am applying a border on the parent. so when i click on other radio button from the group, it should apply the border of clicked and need to remove the border from all other sibling parent... any good way to do...
|
|
|
stackoverflow.com
- 2012-05-18 06:46:50
- Similar
- Report/Block
I have a bill of materials table like so: item - parent The bill of materials is then displayed like so: item 1 - parent 0 item 2 - parent 1 item 3 - parent 1 It could be multi level like this: item 3 - parent 0 item 4 - parent 3 item 5 - parent 3 And it can go on ad infinitum: item 5 - parent 0 item 6 - parent 5 item 6 -...
|
|
|
stackoverflow.com
- 2012-04-02 13:18:45
- Similar
- Report/Block
Ok, i have this div, which needs to be relative and the top in %: #adiv { position: relative; top: 50%; margin-top: 0px; } Now i want to find the value of top:50% in pixels. If I do this: alert("TopHeightInPixels:"+(parseInt($(" div#adiv").css("top")))); Firefox outputs the actual pixels, while Safari outputs just 50. I know why Safa...
|
|
|
|
joomlaportal.de
- 2013-05-13 11:34:25
- Similar
- Report/Block
Hallo zusammen, ich habe gerade folgendes "Problem" Joomla 3.1.1 mit Potostar Template. Ich habe ich Position-8 eine veritkale Navigation (Klasse span3) leider kann ich hier die Breite nicht anpassen. Das CSS gibt mit eine Breite in % aus Code: .row-fluid .span3 { width: 23.404255317%; 23% sind für mein Layout einfach viel zu viel. Ich...
|