The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
62 views

Adding attributes to custom HTML key [img]/path/to/image.jpg[/img]

I have an online text editor, very well made however it does not currently support images. I have this at the moment and don't feel it to be a very good way of doing it. var = txt = "some text here ...
1
vote
2answers
1k views

lua userdata object management

I'm trying to push a LUA class object onto the stack. The pointer to that object can be returned by multiple functions. In other words: I need to push userdata values while still keeping the ability ...
0
votes
0answers
172 views

Generating wrappings for C++ functions

I'm trying to create a generic way to wrap C++ functions (from a different language). I have a list of parameters (and and an iterator) and a specific C++ function to be called on the list of ...
1
vote
2answers
213 views

jQuery wrap numbers with spans [duplicate]

Possible Duplicate: jQuery: Wrap each symbol inside tag I have the following HTML: <div class="reels"> £1234 </div> Which I want to convert to: <div class="reels"> ...
0
votes
1answer
267 views

html list item wraps when IE resized

I have a horizontal menu bar created using ULs and LIs. The issue I am running into is when on the home page(default.aspx) the menu items with long names resize gracefully when IE is resized but once ...
0
votes
1answer
159 views

Wrap selection text (not raw html) in tinymce

(TinyMCE 3.5.2.) I need to select some text in Tiny editor and then wrap this text in tag, for example "<span class = 'special'>smth</span>". I can do it like this: var select = ...
0
votes
3answers
1k views

HTML Table Wrap Column

This is probably something simple, but I can't figure it out. I have a table where users input data into columns. Each time the user enters data a new column is created. After a while they have a TON ...
6
votes
6answers
695 views

jQuery wrap multiple div elements on same class

Hello I would like to use jQuery to wrap sets of class elements in a div but can't find the solution HTML: <div class="view-content"> <div class="first">content</div> ...
0
votes
2answers
1k views

jQuery UI datepicker: How to wrap the datepicker in a new div?

I need to put my datepicker in a new div, that will be a (shadow-)border-div. I've tried the following: beforeShow: function (input) { $(input).datepicker("widget") ...
1
vote
2answers
152 views

Wrapping Text Round Image Issues

I need your help with image display inside comment box. When ever characters of the comments exceeds a certain number instead of it to wrap round the image to the left, it actually gives the ...
0
votes
4answers
72 views

Wrap from X to Y items using jQuery [closed]

http://jsbin.com/uxepap/17/edit How do I wrap all links from the third to the last with one <span class="wrap"></span>? Try to make fixes, if it works, links would be on the red ...
0
votes
0answers
135 views

Unexpected Line Breaks in textarea in firefox

I'm placing the following text in a textarea: (1) Major surgery in patients with multiple risk factors, or; (2) Any patient having hip or knee arthroplasty, or; ...
3
votes
1answer
362 views

Javascript - Getting the last word in a line

Here is an example: <div><span style="font-size:15px;">some text here which is </span> <span style="color:red;">split automatically by the browser.</span></div> ...
1
vote
1answer
238 views

Wrap all HTML tags between h3 tag sets with DOMDocument in PHP

I've got a follow up question to my question that has been answered by @Jack: Wrap segments of HTML with divs (and generate table of contents from HTML-tags) with PHP I've been trying to add some ...
2
votes
3answers
247 views

Wrap segments of HTML with divs (and generate table of contents from HTML-tags) with PHP

My original HTML looks something like this: <h1>Page Title</h1> <h2>Title of segment one</h2> <img src="img.jpg" alt="An image of segment one" /> <p>Paragraph one ...
0
votes
1answer
3k views

Text not wrapping inside absolute positioned div

I'm having an issue getting text to wrap inside an absolute positioned div. I think the problem is I have a the width set to 100% which I have to have because the div resizes with the page. How can I ...
1
vote
3answers
3k views

How to make text wrap around a table, as if it were an image

I'm surprised I couldn't find a solution to this. I would like to position a small table (1 row, 3 cells,) near the top of my document, aligned to the right, with a paragraph wrapping around it, just ...
1
vote
4answers
572 views

Text won't wrap correctly when using padding-left

Here is where I am having the problem: -link removed- Each link in the menu on the left has padding-left: 15px; the reason for this is so I can add a background image (the blue arrow). But now, when ...
0
votes
1answer
332 views

html - Get wrapped text from textarea

I'm trying to get the word wrapped line breaks from a textarea without having make any server calls. This answer gets me 90% of the way there. The problem is that the page is reloaded inside of the ...
1
vote
0answers
121 views

Wrap image with a text

How can I wrap a picture with a text which is binded like below. and if I try that below I will have the error > Error 1 A value of type 'TextBlock' cannot be added to a collection or dictionary of ...
0
votes
1answer
558 views

Automatically wrap WordPress widgets in a DIV

How do I automatically wrap default WordPress widgets into a DIV without altering the widgets themselves? I'm trying to do this, automatically: <div class="widget"> Some WordPress widget's code ...
0
votes
4answers
138 views

CSS Wrapping rows of <span>s issues

I have this data: <div id="results"> <span id="row"> <span id="left">left column</span> <span id="middle">middle text</span> <span id="right">right ...
0
votes
1answer
718 views

In wordpress: wrap every 3 content divs in a div?

I need every three divs of class "loopcontent" to be wrapped in a new div of class "threeacross". I'm new to wordpress and really not a php guy yet, but I'm learning as I go. Here's my loop: ...
0
votes
5answers
2k views

DIVs wrapping, even with “display: inline-block”

I've got a few divs (multi-column page) with "display: inline-block" set. Shouldn't this prevent them from wrapping? I want them all side by side: div.LabelColumn { display: inline-block; ...
1
vote
3answers
332 views

Jquery - adding html after image then wrapping in a div

In my function I would like to take an image add a dynamically created caption then wrap it all neatly in a div. So that.... Before: <img src="whatever" /> After: <div ...
1
vote
1answer
236 views

jQuery get string, extract id and wrap text

if i have the html below <p> some random text :) video?v=E_LkHrerwe4lnhhnrCbo another video?v=567ghf564_-56e</p>​ <p> some2 random2 text2 video?v=rt5y5yvbn5y</p>​ using ...
0
votes
2answers
411 views

Hide sidebar / stop div container from wrapping

I have an image and a sidebar. <div id="outer" style="max-width:1020px;min-width:730px;overflow:hidden;overflow-x:hidden;overflow-y:hidden;"> <div id="image" ...
1
vote
1answer
592 views

How to wrap each word in a span but retain text formatting

How can I wrap each word in a span and retain text formatting? e.g. br, em, strong I'm using the following code to wrap each word from a rich text editor in a span, but it's stripping out all my ...
1
vote
0answers
96 views

Reportlab's platypus para

I am currently using Django 1.4 with reportlab 2.5. I am trying to figure out how to use the experimental platypus/para.py, since I have to wrap blocks with a fair amount of html tags in them. Just ...
0
votes
1answer
628 views

WPF wrap header text on TreeViewItem

I have made a TreeView in WPF with 145px fixed width and all its child elements (TreeViewItems) has a header text that is wider than 145px, which means a horizontal scrollbar appears at the bottom of ...
1
vote
2answers
153 views

find word and wrap div

I don't have access to the HTML, only the raw text. Is it possible to find a word in the raw text like INFO and ENDINFO and use those to wrap a div around the content. <div> content content ...
3
votes
1answer
887 views

Why is layout_marginBottom ignored when using wrap_content?

I have the following layout file : <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" ...
1
vote
1answer
392 views

word wrap in gedit

I am using gedit & I have a very huge line and I am not able to see that complete line because gedit gets stucking. so, I wanted to do word wrapping in gedit. I searched but I didnt found word ...
0
votes
4answers
112 views

Wrap-around detection in Python

Suppose you have a list of values in increasing order, except that at some point they wrap-wround 2, 4, 6, 9, 12, 15, 34, -2, 1, 4, 5, 7, ... knowing that the period is 2^n, for some value of n, is ...
0
votes
2answers
153 views

using regex to wrap images in tags

I've been using regex to wrap my images in < a > tags and altering their paths etc. I know using dom for this is better, having read alot of threads about wrapping, but im unable to understand how ...
0
votes
1answer
738 views

OpenCV - How to convert a cpp code in C [closed]

i'm not good in cpp and i need to have a c interface of this code: #include <cv.h> #include <highgui.h> #include <vector> int main(int argc, char* argv[]) { cv::Mat img = ...
0
votes
1answer
150 views

Create a DIV for each 5 elements

I would like to make that for each 5 elements, I have one div. You can see here an example: http://www.nobregamedia.com/aa/ At the bottom, I have a gallery with 5 elements, changeables by the orange ...
0
votes
2answers
82 views

How do I prevent Ajax elements from wrapping?

I have a div in an html page that is injected with 12 divs via Ajax. When I resize the browser window, the elements or their containing div seem to change size, in which the divs begin to wrap in ...
0
votes
1answer
147 views

Block elements to wrap on text content

I have 2 divs that I want to position vertically, aligned to the left and I want their width to wrap based on the amount of text. fiddle <div class="main"> <div class="line">Content ...
1
vote
1answer
160 views

How to wrap only content fields that use RTE in TYPO3?

I would like to wrap all fields (or only bodytext) that use RTE in backend, any ideas how I could achieve this via TypoScript? I've tried: tt_content.text.default { 20 = TEXT 20.field = bodytext ...
0
votes
2answers
88 views

How would I replace a DOM node and wrap it after?

Consider the following: I have a div which I'm replacing with a textarea like: var $targetDiv = $('#the-div'); var $newDiv = $('#the-new-div'); $targetDiv.replaceWith($newDiv); Which would turn: ...
2
votes
1answer
382 views

multiline gtk.Label ignores xalign=0.5

A gtk.Label can't be aligned in center when line-wrap is turned on. Example code: import pygtk pygtk.require('2.0') import gtk class testwin(gtk.Window): def __init__(self): ...
2
votes
3answers
1k views

UL and floating DIV: list text wraps but background color doesn't

Need help with a floating DIV and a list. A DIV is floating to the right side of a page while list entries flow around it. The problem is that on applying background color to LI elements of the list ...
0
votes
3answers
1k views

I need to wrap long text within a container

I'm having problems wrapping text within my container. I've already searched and all answers were to put in word-wrap: break-word; but it doesn't work for me. I'm must be doing something wrong but I'm ...
1
vote
2answers
307 views

CakePHP - Form->select doesn't have a wrapping div?

I'm wondering why $this->Form->select() in CakePHP 2.1 doesnt come with a wrapping div and label. Do I have to wrap it by myself like: <?php echo '<div><label ...
0
votes
2answers
586 views

Wrapping div to new line causing funny behavior

If any of the nested div's below have a length longer then a adjacent div, the div's don't wrap to the next line "properly". Without dividing each row in it's own div, is there a way to force div ...
0
votes
4answers
515 views

Wraping one div id around another

How to wrap one div around another. I have following two div ids #course{ width:325px; padding-right:25px; border-right:1px solid #999; border-top:1px solid #999; } #home-page-sign-up { width:275px; ...
0
votes
3answers
784 views

Wrap a link to all images inside a div with jquery

I have something like this: <img class="photo" src="www.example.com" /> <img class="photo" src="www.example2.com" /> <img class="photo" src="www.example3.com" /> And i need to get ...
1
vote
3answers
201 views

Wrap Image jquery and javascript

I don't understand very well this code: var img = $('<img/>', {class: "photo", src: photo.url_n, width: wt, height: ht}).css("margin", border + "px"); It seems to create an image tag: <img ...
0
votes
3answers
130 views

how to set vertical height in order to prevent overflow on a floated span?

i have a floated span with some text. i have set the overflow to hidden and the width to a fixed width say 100px. now when the text becomes too long it just wraps. i don't want to set the height to a ...

1 3 4 5 6 7 12