text-indent

Image Navigation Using text-indent

Hello, I'm trying to create a simple image navigation for my site, using CSS to declare the background-image property of a list-item (li). The problem is, when I use text-indent to put the image off-screen, the link is no longer there (off screen as well I presume). Any help would be greatly appreciated. Here is my XHTML: <div id="nav">...

IE6/7 link overlapping + text-indent

hi.. I need a little guidance here... I have 2 links: <div class="tarjBodyHolder"> <div class="imageHolder"> <a href="#" onclick="alert('picture link'); return false;"> <img border="0" src="/picture.jpg" /> </a> </div> <div class="linkTransp"> <a href="#" onclick="alert('family link'); retu...

Indenting in Codegear

Is there a way to indent/tab multiple lines in one action in the Codgear RAD Studio IDE? I.e. I would like to be able to highlight multiple lines and indent them all by one tab simultaneously. ...

First line text-indent in sIFR

Hi, I have a text block made whith sIFR and I want to indent the first line. Look at this image to see what I want: http://alltutorials.hi2.ro/testimonial.jpg I want the word WOW to be after the big quotes. I searched the sIFR documention I used text-indent but it seems it doesn't work. Thank's for the help, Andrei Paste the l...

hiding text using "text-indent"

I'm trying to hide some text inside an <li> element using CSS by setting text-indent: -999px;. For some reason this doesn't work when I set the direction of the document to "rtl" (right to left - my site is in Hebrew). When direction is "rtl" the text still shows... Anyone knows why, and a way around this? ...

Text indent after the first line in a paragraph

- A Reuters reporter in Surkhrod district in Nangarhar province, where villagers said the raids took place, said Afghan police fired at the crowd after some of them started throwing stones at local government buildings. <p> - A Reuters reporter in Surkhrod district in Nangarhar province, where villagers said the raids took place, said ...

Backspace, if chars from cursor to begin of line are tabs/spaces, go back one indent level.

I'm using Vim for Python development. Sometimes, after an expression in an if clause: (suppose | is cursor). if test: pass | ...I press enter, and want to go to the if identation level. I know I can go back to command mode and just press <, but I would like to know if it's possble to, when Vim knows all characters behind the...

Indenting all lines inside textarea..

Is it possible to text indent each line in a textarea? I'm using a handwritten font and the first letter on each line is getting cut off slightly. I've already used padding and margin, but this does not work. Many thanks. Erik ...

How do I indent a single line multiple times in vi or vim?

I've found several answers on how to indent multiple lines in vim, I want to know how to take a single line and indent it more than once. In effect, I want a shorter version of the following command: ">>>>>>>>>>" (That is 10 right bracket "greater-than" signs.) ...

Coloring/indenting a script within script in Emacs

I often have shell scripts that call other scripting languages, like so: #!/bin/bash cat somefile|awk ' BEGIN { #This line is not auto-indented and is colored as a string constant. ... } { #Same with this line. ... }' echo "More Bash code here." ... Is there a way to make Emacs recognize the awk string as an awk program in...