Tagged Questions
0
votes
1answer
31 views
Simple Div/text issue on aliging text on two rows
The solution to this is probably pretty simple, but I'm having massive brain farts and server crises at the moment(I'm the new web designer and noob sysadmin...crazy schedule).
...
0
votes
1answer
85 views
PHP and HTML indenting or not…? [closed]
I have been looking at several questions regarding the pros and cons of indenting HTML into PHP or not. I did not find a clear answer.
My main question now is regarding a small code I have, in which ...
1
vote
2answers
357 views
HTML + CSS: Indent a paragraph after icon
One for all you web designers...
I would like to display a character and indent a paragraph after it - just like in the diagram here:
http://dl.dropbox.com/u/43015072/indent.jpg
The trick is, I ...
0
votes
1answer
67 views
How to get text to stay indented after end of image
I have an image that is left aligned with a caption in WordPress (code is below). The <div> tags at the bottom are dynamically shown (only one shown at a time). When one does show, it juts out ...
1
vote
2answers
120 views
How can I get emacs to indent html chunks between php control constructs?
I have tried every php/html mode (including nxHTML) I can find, but can't find a mode that indents the way I want. Here is an example of what my files contain:
<?php if (a == 5): ?>
...
2
votes
2answers
130 views
HTML form input auto-Indentation
I want to use HTML's Form text-box.
The problem is that I want my users to write in both RTL and LTR languages.
Is there any option to auto Indent the user's input, inside the text-box (while writing) ...
0
votes
2answers
401 views
How do i extend the header div to fit a whole page?
I realise this question has been asked many times but i am going crazy trying to figure it out.
I am quite new to html and want to built a static header (940px x 30px) containing our logo, navbar, ...
1
vote
1answer
45 views
How to make CITE tag entirely indented?
How to make CITE tag entirely indented? I have tested all of the
padding-left: 200px;
margin-left: 200px;
text-indent: 200px;
and in all cases only first line was affected. How to shift right ...
1
vote
3answers
559 views
How to auto indent HTML in ubuntu?
I just got the HTML files of a website I'm supposed to modify.
The problem is the files are not indented.
I use GEdit and want the HTML code to get auto indented.
I read that Indent Lines Plugin is ...
0
votes
4answers
111 views
How do I format code on my own website?
I'm using prettify for color coding but my code is still flat and not indented correctly, how do I format it so it looks similar to github gist or pastebin? (I'm aware you can embed from these sites ...
0
votes
1answer
100 views
XQuery and Zorba: Setting indent to add a tab character instead of two spaces
I'm using the
--indent, -i
Indent output.
command line argument of Zorba XQuery 2.1 to ident the html output of my XQuery.
Is there any option that can be set so the indenting will be done using ...
2
votes
2answers
598 views
C# Tabify/Indent HTML
Is there a tool/library/function in C# which tabifies or indents generated html code without validating or tidying the input?
Edit:
Indent generated HTML code from JavaScript TextEditors, including ...
1
vote
3answers
228 views
Is there a tool that can indent mixed code?
I searched around the webs and found tools that can indent java,C,php,HTML etc.
Is there a tool, that can reliably indent mixed sourcecode and different languages?
-> one indent tool to rule them all?
...
0
votes
3answers
261 views
Indent an entire paragraph?
I have a code setup for a FAQ page like this:
<p><strong>This Is A Question</strong></p>
<p><strong>Answer.</strong> This is the content of the answer, and I ...
0
votes
2answers
50 views
Does anyone know of a text editor that allows you to indent highlighted chunks of code all at once?
I am extremely OCD when it comes to the layout of my code, and it's a pain to press the down arrow key and Tab a hundred times in a row. Does anyone use a text editor that has the function of ...
0
votes
2answers
119 views
css negative indent with 'tab' in between
I understand how negative indent works with CSS, but my question is, is there a way to have a kind of 'tab' in between the beginning of the negative indent and the rest of the text?
What I am trying ...
1
vote
2answers
373 views
vim - html in php files: how to change tab size for html only
How to change the indent, tab size for HTML markup within PHP files? I dont want to change the indent size for php code. Desired tab sizes: HTML - 2, PHP - 4
so it looks like this:
<dl>
...
1
vote
2answers
660 views
How to edit HTML in Vim?
I'm new to Vim and I'm trying to get used to it. I just created a .vimrc file and got Vim to display line numbers and do incremental searching. I also enabled syntax highlighting. Now I want to enable ...
5
votes
2answers
793 views
Can you get ERB to properly indent when rendered?
I have several partials that I'm including in my Rails application.html.erb file, but the resulting HTML doesn't preserve my indenting (formatting). I've been told that the first line gets rendered ...
4
votes
1answer
341 views
What happens with Rails indentation in outputted HTML?
I'm writing code for a Rails view in TextMate (using the 2-space indentation standard). Whenever I view the output of my webpages (View Source), the HTML brackets always seem weirdly indented. For ...
2
votes
4answers
5k views
How to indent a DIV?
I have a div center aligned with its margin sets to 0 auto. Now I want to indent its left margin by 50 pixels from the middle. Whenever I try to do this, though, it aligns the div to the left side of ...
6
votes
2answers
8k views
How to indent multiple levels of select optgroup with CSS?
Just trying to indent optgroup blocks by nesting depth really, I've tried a general margin-left rule, nested elements then trying to apply the same rule, tried padding-left... is indenting like this ...
1
vote
3answers
234 views
How do I indent <code> elements? Example in details
http://htmlpocketreference.110mb.com/taggroups.html
For the site above, how would I indent all the code. I don't want it aligned with the paragraph and headings. I want it to be one indent level in. ...
4
votes
2answers
1k views
Indent, pretty-print code including Django template tags, HTML, CSS, and JavaScript
In dealing with a bunch of crufty Django template files, I want to indent them.
The files contain:
HTML, the bulk of the file. Maybe a pre tag or two.
JavaScript, inside script tags.
CSS inside ...
3
votes
3answers
229 views
html indenting in vim
I don't know if this is possible, but does anyone know of an indent script that will support this scenario?
(| is cursor)
given
<div>|<div>
if I press enter, I want to see
...
2
votes
2answers
59 views
Can someone add fundamental reasons why appending html markup to field variables is wrong
html += '<tr style="display:none;"><td class="leftval">ID:</td><td><span id="' + _uniqueId + '-id">' + one + '</span></td></tr>';
html += ...
0
votes
1answer
380 views
Strange input field indent in Safari
This code:
<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td bgcolor=red>
<input type='text' />
</td>
</tr>
</table>
...
2
votes
1answer
3k views
Question about HTMLTidy in Notepad++
How do I make it so that instead of indenting my elements by multiples of 2 spaces (when formatting without wrapping is selected), HTMLTidy indents them by multiples of tabs (4 spaces long but only 1 ...