Removing divider line

http://i39.tinypic.com/r0ywlh.png
This grey divider line above the URL and below the tabs is killer and I can't seem to remove it in the userchrome.css, I've searched for any possible css to remedy this but I can't seem to remove it.
Please help

Did you try {-moz-appearance: none !important;} ?

Similar Messages

  • Divider lines in SALV Tree, need to remove?

    Hi,
    I am using SALV Tree . I am seeing divider lines between ICONs in the Tree toolbar. I need to avoid these divider lines?
    Why? becuase it is utilizing lot of spaces. so that other ICONs gone into hide mode, for users view these icons they need to click left arrow button to scroll.
    a®s.

    Hi
    Solved by myself.
    Here is the correction code
    * Tree Calls
      try.
          call method cl_salv_tree=>factory
            exporting
              r_container = g_docking_container_1
            importing
              r_salv_tree = grt_tree
            changing
              t_table     = i_yatttic.
        catch cx_salv_no_new_data_allowed cx_salv_error.
          exit.
      endtry.
    *  try.           " By removing this custom  function now ICONS displayed properly
    *      v_text1 = text-b01.
    *      v_text2 = text-b02.
    *      grt_functions->add_function(
    *        name     = 'MYFUNCTION'
    *        icon     = '@42@'
    *        tooltip  = v_text2
    *        position = if_salv_c_function_position=>right_of_salv_functions
    *    catch cx_salv_wrong_call cx_salv_existing.
    *  endtry.
      perform f_build_tree_header.
      perform f_build_tree_info.
      perform f_build_tree_events.
      grt_tree->display( ).
    * Column Calls
      gs_layout-grid_title = text-101.
      try.
          call method cl_salv_table=>factory
            exporting
              r_container  = g_docking_container_2
            importing
              r_salv_table = gr_table
            changing
              t_table      = i_ylactc1.
        catch cx_salv_msg.
      endtry.
      try.
          gr_column ?= gr_columns->get_column( text-103 ).
          gr_column->set_cell_type( if_salv_c_cell_type=>hotspot ).
        catch cx_salv_not_found.
      endtry.
      gr_sorts = gr_table->get_sorts( ).
      gr_sorts->add_sort( columnname = text-103 subtotal = abap_false ).
      gr_layout = gr_table->get_layout( ).
      key-report = sy-repid.
      gr_layout->set_key( key ).
      gr_layout->set_save_restriction( cl_salv_layout=>restrict_none ).
      perform f_build_column_events.
      gr_table->display( ).

  • How to remove characters/lines from the beginning of an InputStream

    Hi,
    I have a program which receives several InputStreams. From each of these streams I have to remove 2 lines from the beginning. After the lines are removed, all the streams are combined to one with SequenceInputStream and read in one chunk. Is there an easy/simple way of doing this?
    One option I thought would be to read the char by char until 2 end of line chars have been detected and then read the rest of the data to a buffer. And the create a ByteArrayInputStream out of this buffer. Problem with this approach is, that the amount of data can be large, so putting all the data in to memory might cause problems.
    Another option is to use BufferredInputStream and use the readline() method twice to get rid of the lines that are not needed. After this I would write the data to some output stream, which is then converted back to input stream. Propably would work, but sound too much of work for a simple thing like this. There has to be better way.
    To make it simple, what I need is a method that looks like the following, or something similar
    *  Removes n number of lines from the beginning of a InputStream.
    *  @param is InputStream where the lines are removed
    *  @param numberOfLines int value to indicate how many lines whould be removed
    *  @return InputStream where lines have been removed.
    public InputStream removeLines(InputStream is, numberOfLines);Thanks.

    Here's the code, feel free to use it. Comments are also welcome.
    public InputStream removeLinesFromTheBeginning(InputStream is, int numberOfLines) throws IOException
              char c = 'c';
              int i = 0;
              for(int n = 0 ; n < numberOfLines ; n++)
                   do
                        c = (char)is.read();
                        System.out.print(c);
                        if(c == (char)-1)     // end of stream reached before any newline characters were found.
                             return null;
                        i++;
                   while(c != '\n');
                   System.out.println();
                   System.out.println("Characters removed:" + i);
                   System.out.println("n: " + n);
                   i = 0;
              return is;
         }Edited by: dave_spaghetti on Jun 16, 2009 5:42 AM
    Fixed a bug.

  • Best way to remove last line-feed in text file

    What is the best way to remove last line-feed in text file? (so that the last line of text is the last line, not a line-feed). The best I can come up with is: echo -n "$(cat file.txt)" > newfile.txt
    (as echo -n will remove all trailing newline characters)

    What is the best way to remove last line-feed in text file? (so that the last line of text is the last line, not a line-feed). The best I can come up with is: echo -n "$(cat file.txt)" > newfile.txt
    (as echo -n will remove all trailing newline characters)
    According to my experiments, you have removed all line terminators from the file, and replaced those between lines with a space.
    That is to say, you have turned a multi-line file into one long line with no line terminator.
    If that is what you want, and your files are not very big, then your echo statement might be all you need.
    If you need to deal with larger files, you could try using the 'tr' command, and something like
    tr '
    ' ' ' <file.txt >newfile.txt
    The only problem with this is, it will most likely give you a trailing space, as the last newline is going to be converted to a space. If that is not acceptable, then something else will have to be arranged.
    However, if you really want to maintain a multi-line file, but remove just the very last line terminator, that gets a bit more complicated. This might work for you:
    perl -ne '
    chomp;
    print "
    " if $n++ != 0;
    print;
    ' file.txt >newfile.txt
    You can use cat -e to see which lines have newlines, and you should see that the last line does not have a newline, but all the others still do.
    I guess if you really did mean to remove all newline characters and replace them with a space, except for the last line, then a modification of the above perl script would do that:
    perl -ne '
    chomp;
    print " " if $n++ != 0;
    print;
    ' file.txt >newfile.txt
    Am I even close to understanding what you are asking for?

  • How can i remove a line from an ordinary text file?

    It is easy to remove a line from a file by rewriting the file. how can i remove a line without rewriting ? Also, do not use whitespaces to overwrite the line. I expect a perfect line deletion code .....

    gimbal2 wrote:
    hsc71 wrote:
    It's the way you communicate. Try to be carefull with the words you use in your post. It's easy to insult people just by choosing the wrong words. Bold text and capitals is equal to shouting.
    shock. You said "wrong words". I am seriously offended by that!
    Seriously, would you care that I am offended? I really hope not... Say what you want, people will find reasons to take offense one way or the other.Hehe, maybe you're right, but the OP still has no answer.............and in the end that's what he/she is looking for.

  • Data Merge - Not removing blank lines when more than one in a row

    I am having the same problem as mentioned here: http://forums.adobe.com/message/2109531#2109531  That post is for some reason set as "answered" though the poster said the latest update did not resolve the issue.  Has anyone found a solution to this issue?
    Thanks much,

    I"d suggest you try running the merge WITHOUT removing blank lines, then use  GREP to remove empty paragraphs. There's a pre-written saved query in the list.
    Peter

  • //remove this line if you want to edit the code by hand? um which line?

    Several of my pages are locking up and I don't know why. As I work through the code, I remembered that I altered some text in a SendEmail by directly altering the page rather than using the Server Behavior. Don't understand why that would matter but whatever...
    Now as I ponder if that is causing the problem, I ran across this commented line in the code:
    //remove this line if you want to edit the code by hand
    But are they talking about the line just after that line of //remove or do they mean the actual comment line of
    //remove this line if you want to edit the code by hand?
    Thanks for your help

    Trigger and $tNG look suspiciously like ADDT code to me. Ask the guys in the ADDT forum (http://forums.adobe.com/community/dreamweaver/addt). There are a couple of them in there who know the code intimately. I haven't touched ADDT for ages.

  • I need to make a dividing line go down the length of each page

    I have the line in my master page. It separates my main content from the sidebar.
    I just got to a page where the main content runs deeper than my sidebar, so the short dividing line looks odd.
    I first tried to get around this by pinning it, but that made the line overlap the header and footer in some situations.
    So I thought, maybe the only way around this is to make the master page as deep as this page with more content. I thought this would force all pages to be the same depth as the longer page, but it didn't. All other shorter pages remain short and the dividing line runs into the footer on them.
    Do I have to manually re-size all pages to be the depth of the longer page since the master page couldn't do it? Somehow, I doubt that would work since HTML ignores empty space.
    Is there any way around this, or do I just need to live with the shorter line on the longer page?
    Thanks.

    I have just finished building a work-around for a vertical "clip" Graphic that has given me basically the same problem. The Clip was not on the master page, I installed it on each page as I worked on it, marking it as "footer". But when I published it doesn't seem to work (the clip was floating in the air so to speak), and using a longer clip for the longer page didn't work either, so I had to work out another way.
    Here are JPGs of my solution (yesterday was devoted to figuring this out, I feel a little dumb).  I have indicated the "clip" with red. "A-Master" the smaller master layout, is what I using for all pages, except for the one long page, for which I created and applied "B-Master". The "clip" was now entered on the Master pages, and not the design pages. Ta dah! It seems to work.
    Still working on the site, but I really think this is the simplest answer.

  • Removal of Line feed from EDI file in IDOC to EDI file scenario

    Hi Experts,
    I have one problem related to line feed in EDI file. Currently i am using seeburger mapping to do XML to EDI mapping. After mapping i am using File Adapter(with NFS) to create file in my PI server.
    The line looks like
    UNB+UNOA......
    UNH+1.......
    BGM.........
    but i want my file in without line feed
    UNBUNOA......UNH1......BGM
    Can this be possible without use of Shell script?
    Is anything i can do in Seeburger mapping [i checked BIC mapper in seeburger and see some parameters there]?
    Regards,
    Shradha

    Hi,
    I am explaining my scenario in detail:
    my Current EDI file looks like
    UNAf1f2............'
    UNBf1f2............'
    BGMf1f2............'
    UNHf1f2............'
    now i want my file to be in following format
    UNAf1f2............'UNBf1f2............'BGMf1f2............'UNHf1f2............'
    NOTE: to create my current file i am using File adapter with NFS and seeburger mapping.
    Can you please tell me a way to remove the line feed from the current file ?
    I already tried newline checkbox from seeburger and it is not working. and other parameter i can use from see burger mapping tool which will remove my line feed.
    Regards,
    Shradha

  • How to remove first line of outgoing messages: ?xml version="1.0"........

    On outgoing messages, when I look in MONI, I see properly formatted XML message.
    The first line of all my outgoing files has this line:
    <?xml version="1.0" encoding="UTF-8" ?>
    Is there a way to suppress this?
    If so, is there a way to suppress for only certain partners within one interface?
    Thanks,
    Jeff

    Hi Jeff,
    As others pointed without this line the document will not be a valid document. Can you tell your complete requirment. One of these kind of requirement is discussed in this thread, you can see whether its the same in your case or not. If not then tell your complete req. so that somebody can help you out here.
    Remove first line in the XML Document
    Regards,
    ---Satish

  • How do I remove a line in Layout?

    There is a line in section text layout that I wish to either remove or move around (shown as the selected red line). But I can't seem to delete or move them once I selected it in the layout. Why? Thanks!

    Thanks! It works. But if I apply the change to the section, it will wipe out all the images of all the sections... and I have a lot of images!
    What's the best way to remove that line and not cause too much images? Can I do it page by page?

  • How can I adjust the space between the dividing line of the footnotes and the continuous text?

    How can I adjust the space between the dividing line of the footnotes and the continuous text?

    I want to extend the space so the dividing line does not stuck to the normal (continuous) text in my thesis. Do you have a solution? That would be perfect. Thanks a lot!

  • Removing power lines using the Stroke path method

    I watched a video created by Adobe Product Manager Brian O. Hughes titled Adobe Max:  Hidden Gems in Photoshop an excellent video (see link below).  I have been trying his easy method of removing power lines from an image using the pen tool and stroke path method defined as follows:
    Using the pen tool create a path of the line to be removed.  Making sure the brush tool is small and set at 100% opacity;  click on the Spot Healing Brush making sure it is set to "content aware".  Then in the path panel click "stroke path" and it removes the line.
    Well I have followed these instructions several times, very simple, but it doesn't remove the line for me.  I can manually shift click the start and ending point and it removes it but using the stroke command within the path panel doesn't work.  I am making sure the path is active.
    Any ideas why it doesn't work for me?
    Thanks...........Ralph
    Here is the link to the video, his technique is listed near the end, @ minute 56:  http://www.youtube.com/user/Photoshop

    Hi jjMack, thanks for your response.  I found my problem after realizing that I hadn't terminated my pen line.  I didn't realize I had to click the end anchor point to complete the line,  I thought since the line was obvious on the image that it had been created and  thought I couldn't see it in the paths panel because it was so small (these old eyes aren't what they used to be).  When clicking on the last anchor point it could easily be seen on the paths panel..  I just don't use the pen tool enough so I didn't realize my error.  Learn something everyday.  Incidentally, I had set the stroke path on the paths panel to Spot Healing Brush and only used the tools menu to confirm that content aware was selected.
    Thanks again JJ................Ralph

  • I accidentally hit the REMOVE FROM LINE button on my Premium Voice Mail. How can I get it back? The only options I found was visual voice mails.

    I accidentally hit the REMOVE FROM LINE button on my Premium Voice Mail. How can I get it back? The only options I found was visual voice mails.

    TheAshburns,
    No worries, we can get you back on the road with the correct voicemail service. Just to be clear, did you want to readd Premium Visual Voicemail? If so, click the link and select question #7 for steps http://www.verizonwireless.com/support/visual-voice-mail-faqs/?lid=sayt&sayt=visual%20voic*
    SandyS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • How to remove dashed line

    I want to ask you how I can remove this blue dashed line?
    http://i.stack.imgur.com/WQpwt.png
    Ref javafx 2 - How to remove dashed line - Stack Overflow

    Hi,
    This is my code. How do you want to modify this?
    List<String> members = new ArrayList<String>();
    FileInputStream fstream = new FileInputStream(cube);
    DataInputStream in = new DataInputStream(fstream);
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    while ((strLine = br.readLine())!=null)
    if(!(members.contains(strLine)))
    members.add(strLine);
    in.close();
    mail.send(members);
    Thanks,

Maybe you are looking for

  • How to find the current version for MQ series JMS adapter in PI 7.0

    Hi, Please anybody has the idea to find the JMS version on PI 7.0. Thank you.

  • Profit Center Customer Age Analysis

    Team Is there any standard report available to extract subject age analysis by the profit center? In FDI1 am able to see BA and also tried evaluations but to no avail. Cheers Kartik

  • Validating XML against XSD

    Hi, I would like to validate XML against XSD using SAX parser. Can any one help, where I can get information. I could get some information of XML validation against DTD. But could not get much information for XSD validation. Which parser is good for

  • Syntax error in GP_ERR_RSDTPERR, row 198 (- long text)

    Hi Experts, We are getting this error while running DTP for master data." Syntax error in GP_ERR_RSDTPERR, row 198 (-> long text)". Actually i have loading master data for an compunding info object. Pls help me how to resolve this. Thanks & Regards S

  • Need to track windows processes through java code.

    Need to track windows processes through java code. Eg: I want to find out whether an exe file (wrun.exe) is running or stopped. Can I do it through java. If so can any one please tell me how to do it. That will be a great help. Thanks, Ramesh