The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
5answers
35 views

CSS Set Paragraph Width Automatically

Here's the deal. Instead of just underlining my paragraph and using text-align, I want to add a dotted border underneath and center it inside the paragraph's parent div. This my code that is not ...
1
vote
0answers
36 views

Arabic text is not properly wrapped in reportlab's Paragraph flowable

Let’s say I have this Arabic snippet: إذا أخذنا بعين الإعتبار طبيعة تقلب المناخ و المتغيرات البينية السنوية و تلك على المدى الطويل إضافة إلى عدم دقة القياسات والحسابات المتبعة In English this should ...
0
votes
0answers
20 views

Create paragraph in subthread to FlowDocument in main thread

I´m creating a Thread to do some long run process and building a Paragraph that I shall show in a RichTextBox. Normally this is simply done by: Paragraph paragraph = new Paragraph(); ...
0
votes
2answers
22 views

Text in <p> tag overflowing off left side of screen on mobile

I'm trying to get this site working for mobile devices: http://whitehallrow.com/ The text body under the slideshow is working fine on my Blackberry, but all the paragraphs under the blue ribbons are ...
0
votes
2answers
18 views

Regex to fetch whole and decimal numbers from paragrph

I want to fetch the whole and decimal numbers from paragraph. I'm using jQuery and regular expression for this. here is my code: jQuery("#Content_Text p, #Content_Text td").html(function (index, ...
1
vote
2answers
50 views

Paragraph of text in circle [CSS]

I have been looking around for a decent and fast solution on how to place a paragraph of text inside a circle. I found there are two solutions. Solution 1 Float multiple div's of the same height as ...
0
votes
0answers
7 views

How to make FCKeditor to separate paragraphs with <p> not with <div> when pasting plain text?

I am pasting plain text into FCKeditor and see, that is separates portions separated with new line symbol in original text, with <div> tags in resulting code. How to change this to <p>?
0
votes
1answer
55 views

Why in bootstrap when I minimize my window my <p> keeps getting longer and pushes all the content below it down

<div classs="row-fluid"> <div class="span12" style="background:black; padding:25px 0px;">content content</div> </div> <div class="span4 offset2"> <p>blah ...
1
vote
1answer
55 views

Reading a paragraph from the command line on java console program

The while loop in the following program does not terminate so I can't get the output in the last line that tries to print the variable paragraph to console. There are similar problems but the ...
0
votes
0answers
13 views

CATextLayer and CTParagraphStyleSetting

Ok, I learned that a CATextLayer basically ignores the paragraph-style settings (that took quite some googling) when I add an attributed string. I have to lines of text in a CATextLayer with a huge ...
1
vote
2answers
34 views

Closing paragraphs creating unwanted line breaks

I am trying to make it so all the circles align across the page, but instead they are stacking vertically. Is there any way to remove the line break, or any other tools that will allow for the same ...
5
votes
4answers
199 views

How to select the paragraph with only specific class

Let say I have my HTML code look like this: <p class="p">Paragraph</p> <p class="p p2">Paragraph 2</p> <p class="p p3">Paragraph 3</p> If I use: ...
1
vote
2answers
93 views

How to get text inside array?

I have this array: var arr = ['<p id="p1">Paragraph 1<p>', '<p id="p2">Paragraph 2<p>', '<p id="p3">Paragraph 3<p>'] How can I get the text Paragraph 3 from ...
1
vote
2answers
39 views

Why can't address elements be in p elements?

I've reviewed Why on earth is <address> a Block-Level Element? already and found that it adds little insight to the matter. A client gave me a paragraph of plain text, and I'm attempting to ...
0
votes
2answers
88 views

Dynamically split p in span, jquery

I'm writing some read-more/less functionality for a text, but I came across the next problem. My steps: 1) getting the content of a text containing div, with multiple paragraphs. var content = ...
0
votes
2answers
100 views

Multiline in CGridView column

I have been searching through the internet for an answer to my question but I haven't found one. My problem is that I have column in my CGridView that contains a blob. My blob is a comment that is ...
0
votes
3answers
104 views

Move a paragraph after a div with .after (jQuery)

I am currently playing around with Codeacademy and I received a task, telling me to move a new paragraph, after a div. Heres what I did: $('#one').after('<p>this is jquery</p>'); Now I ...
0
votes
0answers
78 views

Underlying hidden paragraph influencing positioning (cycle, masonry)

What it boils down to is that the paragraph at the end of the slideshow is determening the overall minimum height of the item box and thus influencing the positioning of the overall website. link to ...
0
votes
2answers
146 views

MigraDoc - how to avoid line break between paragraphs

I am wondering if there's a way to avoid line breaking between certain paragraphs. For example: Paragraph PjourneyTitle = sec.AddParagraph(journeyTitle, "Heading2"); Paragraph Pjourney = ...
2
votes
1answer
128 views

Rotate paragraphs or cells some arbitrary number of degrees — Itext

I have a web site where the users upload photos and create photobooks. Also, they can add text at absolute positions, rotations, and alignments. The text can have new lines. I've been using the Itext ...
0
votes
1answer
49 views

using javascript to double click one paragraph and all paragraphs changes

Let's say I have 5 paragraphs and if I double click one paragraph and all paragraphs changes color how can I do it with javascript? I have to use javascript and nothing else. Not even using jquery. ...
6
votes
5answers
186 views

How to compare two paragraphs of text?

I need to remove duplicated paragraphs in a text with many paragraphs. I use functions from the class java.security.MessageDigest to calculate each paragraph's MD5 hash value, and then add these hash ...
1
vote
1answer
74 views

Default Paragraph Class in Wordpress the_content

I'm sure this is simple, but I've searched Google for about 30 minutes with no luck. I'd like to know if it's possible to adjust the default class of paragraphs that are output by the_content in ...
0
votes
2answers
66 views

List with icons in not fitting to left margin? there is a space

html <ul class="social"> <li><a class="html5" href="#html5"></a></li> <li><a class="twitter" href="#twitter"></a></li> <li><a ...
0
votes
1answer
58 views

Heading and paragraph text together without space

I have - <p>some text as 'intro'</p> <h1>Big Text</h1> <p>some text as 'outro'</p> I have this set out on a background image, I have styled margins and fitted ...
0
votes
2answers
269 views

HTML jQuery change paragraph text with image by a thumbnail

I'm just started using jQuery in my site, which has a gallery like site with a bunch of thumbnails. When i click a thumbnail i want the picture to open in a new div box with the related text. I have ...
2
votes
2answers
830 views

Add items to existing PDF with iTextSharp

Is the correct way to add items to an existing PDF? The method GetFileBytes reads a PDF from disk and converts to an array, this works fine, however the resultant file NP.PDF is exactly the same as ...
0
votes
2answers
38 views

Building dynamic links in Javascript

I have this code below: for (var index in mv.exifImages) { var p = document.createElement("p"); var oText = document.createTextNode("link" + index); p.appendChild(oText); ...
0
votes
0answers
51 views

Losing part of formating when pasting paragraph in WPF richtextbox

When I try to paste paragraph in wpf richtextbox that already include some text, the newly added text lose bold property of formatting, but not the underline. As far as I understand, this is happening ...
0
votes
2answers
355 views

How to find the page number from a paragraph using OpenXML?

For a Paragraph object, how can I determine on which page this is located using the Open XML SDK 2.0 for Microsoft Office ?
1
vote
2answers
62 views

Constraining <p> to the bounds of an angled <div> w/ CSS (JSFiddle link attached)

I would like the <p> in my document to be contained within an angled <section> container so as to create stepped lines for the paragraph. Ideally I'd like the paragraph take the shape of ...
0
votes
3answers
151 views

Textarea to paragraph or plain text

I have a form where a user is able to comment via a textarea. If the submit button is clicked it returns the value of what is entered in the textarea inside a textarea. How can I change this it so ...
7
votes
2answers
219 views

In contenteditable how do you add a paragraph after blockquote on Enter key press?

I have the following problem. Once I add a blockquote in contenteditable, by pressing Enter key it moves to a new line and adds another blockquote element. It goes on forever, and I can’t escape the ...
0
votes
2answers
39 views

Strip paragraph tags from a block of text

I am just trying to get my head round pregreplace, but it is driving me round the bend. All the examples I seem to find are a million times complicated than I need. What im trying to do is just strip ...
4
votes
3answers
741 views

CSS - Vertical align text in absolute positioned paragraph

Before we start: Please don't close this as a duplicate of another question. I just searched here on Stackoverflow without finding that exact case. The closest is I believe this question. Still, ...
0
votes
3answers
183 views

jQuery get text node siblings at deepest level

I have divs that may consist of text like this: <div> <p> <span>My text <br /> Some more text</span> </p> </div> Or like this <div> <p> Here's ...
1
vote
1answer
183 views

force tinymce to enter newline with enter keypress rather than making a new paragraph

When a user hits the Enter key while using TinyMCE, it doesn't add a new line, it adds a new paragraph. Can I change this behavior and force it only to add a line break <br /> instead of a new ...
0
votes
1answer
25 views

Duplicating text in a paragraph because of $(element).end()?

I have a div with a class textareaedit which can have more than one p (paragraphs) contained in it. But I want to grab only the last paragraph and deal with that text. My HTML is like this: <div ...
0
votes
0answers
61 views

how to decrease the height between paragraphs i.e <p> </p> in JSP

I got 4 paragraphs like abcd efgh ijkl mnop Here is the code: <p style="line-height: 2"> <label><font color="red">*</font>Alamat :</label> ...
0
votes
1answer
73 views

Inside a div, I have an image, then paragraph, then image at the end. I can't get the second image to be 'inside' the paragraph

So, I have a div, and inside it I've got 3 things; 1. An image (a big left quotation mark) 2. a live text paragraph 3. another image at the end (a big right quotation mark). The first image, when ...
0
votes
2answers
237 views

can't set font-family or font-size on paragraph

Hi for some weird reason I can't set font family or font size on this paragraph. Here is the code. I tried to target all paragraphs and nothing is working the text stay the same. Here is codepen link ...
0
votes
1answer
1k views

Managing text columns in responsive layout

I'm working on a site that uses a responsive layout and I've run into a problem getting around the shortcomings of the newer CSS multi-column properties (http://dev.w3.org/csswg/css3-multicol/). When ...
0
votes
2answers
248 views

c# paragraph delimiter in text read from keyboard

How is it possible to let user enter more paragraphs before enter or carriage return is supplied? Knowing that after each paragraph one should hit enter to mark that he finished that paragraph. I ...
0
votes
1answer
35 views

Why TextElemt class is not derived from Control class?

Consider this Xaml: <RichTextBox> <Document> <Paragraph> <Run Text="FirstWord " /> <Run Text="SecondWord"/> </Paragraph > <Paragraph> ...
0
votes
1answer
68 views

Remove all paragraphs based on order (after the 2rd, 3th or 4th…)

I got this $description = '<p>text1</p><p>text2</p><p>text3</p><p>text4</p><p>textn</p>' I want to remove only what comes after ...
0
votes
0answers
65 views

How to insert <p> and </p> and <h1 or 2 or 3> and </h1 or h2 or h3> in microsoft word without macro [closed]

I have a hundreds of articles that needed to be formatted with < p > and < /p > for paragraphs. < h1 > and < /h1 > or < h2 > and < /h2 > for sub titles. I wish to select the ...
1
vote
3answers
231 views

html text hiding with paragraph id

For example, I have 3 paragraphs : <p id="txta">AAAAAAAAAAA</p> <p id="txtb">BBBBBBBBBBB</p> <p id="txtc">CCCCCCCCCCC</p> And I have a script that hides them ...
1
vote
3answers
134 views

Change as an <p> text show itself every click with JavaScript using a series of quotes you have

So that's my question, (I know it could be a very easy one but I ma completely new to JavaScript). So I have a list of quotes. I need a script that every time the user click wherever part of the ...
2
votes
1answer
82 views

HTML CSS Centering part of text inside a paragraph

How would I manage to center a part of text which is inside a paragraph? Example I have a paragraph : <p id="hello">Hello : <span id="love">I love you</span> very much</p> ...
1
vote
1answer
216 views

Change paragraph text dynamically with textarea by clicking third element with jQuery?

I want to display written textarea text in another textarea by clicking a third element. So here's the code I'm using at the moment but it shows the written text when you press the textarea: ...

1 2 3 4 5