How to change worksheet direction in numbers

Hi,
I have the latest update of numbers, and I write in Hebrew (which is a right-to-left language). The worksheet in numbers is left-to-right and I was wondering how I can change it to a right-to-left sheet.
Thanks,
Idan Ashkenazi

Hi Tom,
Tom Gewecke wrote:
I think the improved bi-directional support was essentially limited to fixing the bugs that made RTL text input pretty impossible in earlier versions.  The reference to "reversing the direction of tables" is curious, however.
False advertising? As a Level 9 contributor, could you please tell Apple that idanash1990 expected more?
Regards,
Ian.

Similar Messages

  • I have file with 500 pages created from AutoCad file. In all pages, I have different document numbers.The file is not editable in pdf. How to change all the document numbers using "Comment" feature? Any alternate method?  alternate method? I have Adobe Ac

    I have pdf file with 500 pages created from AutoCad file. In all pages, I have different document numbers.The file is not editable in pdf. How to change all the document numbers using "Comment" feature? Any alternate method?  alternate method? I have Adobe Acrobat X Pro and Windows -7 platform.

    Yes, I just want to cover up all the pages for those particular area of document numbers.
    Nothing sensitive about it. I just want to show the correct document numbers on all pages in print out.
    So, I wanted to cover up by comments, but commenting on each page will be difficult. So, I wanted to comment the same on all pages.

  • How to change the direction of my application ?

    apex 4.0 , db11gxe , firefox 24 ,
    hi all,
    how to change the direction of my application from left to right to right to left of vice versa ?

    newbi_egy wrote:
    sure i did , i found nothing ,
    provide me with a link if you have one
    thanks
    Hi,
    That's strange.
    Search works just fine for me
    https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=rtl&rankBy=relevance&contentType=all&con…
    Regards,
    Jari

  • How to change the direction text writen!

    i will write a notepad in pure java. but i will make it like this: item is top to bottom, and line is left to right. This is mongolian. but i dont know how can change the direction of text writen.
    please tell me!

    Here's what you should do:
    suppose your string is "abc" and you want to display that reversed:
    1. reverse the string
    2. find where your start point is (where you're going to draw 'a'
    3. Use FontMetrics to calculate the offset from the start point you need to make to print the string where it should be

  • How to change format of phone numbers in PowerShell?

    We need to append the area code and hyphen in front of the office phone number field in their domain user account for all our users that have office phones now that we are changing from 7 digit numbers to 10 digit numbers.
    I found a script that finds and edits phone numbers, but the author chose a different way to format the numbers.
    This is the part of the script I need to change:
    # Format number as xxx xx xx xxx.
            $Phone = '{0}
    {1} {2} {3}' -f$Phone.Substring(0,3),$Phone.Substring(3,2),$Phone.Substring(5,2),$Phone.Substring(7,3)
    I'm trying to figure out how to edit that so that it formats it as xxx-xxx-xxxx
    (3 digit area code, hyphen, 3 digit prefix, hyphen, four digit number) instead of xxx xx xx xxx.
    Can someone show how to rewrite this section?

    The modified script:
    # This format number as xxx-xxx-xxxx.
    $Phone = '{0}-{1}-{2}' -f $Phone.Substring(0,3),$Phone.Substring(3,3),$Phone.Substring(6,4)
    Hope this helps.
    Regards,
    thennet
    Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable. This helps the community, keeps the forums tidy, and recognises useful contributions. Thank you!

  • In Pages:  How to change text direction in cell?

    in Pages, I'd like to change the direction of the text in a table I'm creating. 
    In the first column (one long column -- I've merged the cells) the work is reading left to right.  How do I make it read up and down?
    Thanks in advance!

    Here's what I found: 
    Insert a text box from the INSERT menu.... it's also available at the FORMAT menu, but I chose Insert. 
    Don't drag yet!
    place cursor and type your text.
    Then, click on the METRICS menu in the Inspector pane
    Rotate.  Getting exactly to 90 degrees was difficult.  Maybe because I called it 90% at first!
    Now you can drag.
    It might look better to spread out the letter spacing in the text you have entered.  Do that from the "text" tab in the Inspector pane.
    if you double click, or even click too much, the text box will jump back into a horizontal position -- Dont' worry, it's trying to let you edit. 
    just go back to "Metric" and change it back to 90 degrees.
    Thanks Barry for answering this 3 years ago, and getting me started!

  • How to change TLFTextField direction at runtime?

    I create a TLFTextField object at design time and need to change its direction at runtime, how this could be possible?
    the following code did not work and simply ignored:
    var myText:TLFTextField = MyText;
    myText.textFlow.direction = "rtl";
    What should I do?

    Yes, it work and I was know it, for this reason I emphasis that I created control at "DESIGN time", I want to change the direction of controls that created at design time not creating at runtime with var tf:TLFTextField = new TLFTextField();
    To reproduce the problem create TLFText on your scene with text tool and name it "MyText" then
    var tf:TLFTextField = MyText; // instead new TLFTextField();
    ..rest of your code
    now you will see that nothing will be change! I struggled many hours but still no success.
    Do you have any idea in this case?

  • How to change the range in numbers?

    how to change the range on graph from .0000 to .0 or .00 and ther range on thr graph from 2's to .5

    Hi,
    Click on Graph Properties icon->Scale Tab -> Click on Vertical axis and specify your range.
    Regards,
    Dpka

  • How to change the direction of a moving object

    I am trying to make a connect four program for class, and i am trying to make it so the red check piece move down. But instead it move left n right -.-, ive tried changing the coordinates but then the piece would just spin in circle or spins out of control. Here is the code i have right now, can someone help me please =D .
    import java.awt.*;*
    *public class Circle{*
    *private int centerX, centerY, radius;*
    *private Color color;*
    *private int direction, velocity;*
    *private boolean filled;*
    *public Circle(int x, int y, int r, Color c){*
    *centerX = x;*
    *centerY = y;*
    *radius = r;*
    *color = c;*
    *direction = 0;*
    *velocity = 0;*
    *filled = false;*
    *public void draw(Graphics g){*
    *Color oldColor = g.getColor();*
    *g.setColor(color);*
    *// Translates circle's center to rectangle's origin for drawing.*
    *if (filled)*
    *g.fillOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *else*
    *g.drawOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *g.setColor(oldColor);*
    *public void fill(Graphics g){*
    *Color oldColor = g.getColor();*
    *g.setColor(color);*
    *// Translates circle's center to rectangle's origin for drawing.*
    *g.fillOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *g.setColor(oldColor);*
    *public boolean containsPoint(int x, int y){*
    *int xSquared = (x - centerX)*  (x - centerX);
    int ySquared = (y - centerY)  *(y - centerY);*
    *int radiusSquared = radius*  radius;
    return xSquared  +ySquared - radiusSquared <= 0;+
    +}+
    +public void move(int xAmount, int yAmount){+
    +centerX = centerX+  xAmount;
    centerY = centerY  +yAmount;+
    +}+
    +public int getRadius(){+
    +return radius;+
    +}+
    +public int getX(){+
    +return centerX;+
    +}+
    +public int getY(){+
    +return centerY;+
    +}+
    +public void setVelocity(int v){+
    +velocity = v;+
    +}+  
    +public void setDirection(int d){+
    +direction = d % 360;+
    +}+
    +public void turn(int degrees){+
    +direction = (direction+  degrees) % 360;
    // Moves the circle in the current direction using its
    // current velocity
    public void move(){
    move((int)(velocity  *Math.cos(Math.toRadians(direction))),*
    *(int)(velocity*  Math.sin(Math.toRadians(direction))));
    public void setFilled(boolean b){
    filled = b;
    import javax.swing.*;*
    *import java.awt.*;
    import java.awt.event.*;
    public class ColorPanel extends JPanel{
    private Circle circle;
    private javax.swing.Timer timer;
    public ColorPanel(Color backColor, int width, int height){
    setBackground(backColor);
    setPreferredSize(new Dimension(width, height));
    // Circle with center point (25, 100) and radius 25
    circle = new Circle(25, height / 2, 25, Color.red);
    circle.setFilled(true);
    // Aim due west to hit left boundary first
    circle.setDirection(90);
    // Move 5 pixels per unit of time
    circle.setVelocity(5);
    // Move every 5 milliseconds
    timer = new javax.swing.Timer(5, new MoveListener());
    timer.start();
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    circle.fill(g);     
    private class MoveListener implements ActionListener{
    public void actionPerformed(ActionEvent e){
    int x = circle.getX();
    int radius = circle.getRadius();
    int width = getWidth();
    // Check for boundaries and reverse direction
    // if necessary
    if (x - radius <= 0 || x + radius >= width)
    circle.turn(90);
    circle.move();
    repaint();
    }with that code my circle just spins back n forth rapidly. How can i make it so it drop to a certain location everytime i click the mouse?

    lilkenny1337 wrote:
    I am trying to make a connect four program for class, and i am trying to make it so the red check piece move down.
    How can i make it so it drop to a certain location everytime i click the mouse?Try this:
    public class ColorPanel extends JPanel {
        private Circle circle;
        private Timer timer;
        private int stepX, stepY, xM, yM;
        public ColorPanel(final Color backColor, final int width, final int height) {
            setBackground(backColor);
            setPreferredSize(new Dimension(width, height));
            // Circle with center point (25, 100) and radius 25
            circle = new Circle(25, height / 2, 25, Color.red);
            circle.setFilled(true);
            // Aim due west to hit left boundary first
            circle.setDirection(90);
            // Move 5 pixels per unit of time
            circle.setVelocity(5);
            // Move every 5 milliseconds
            final MoveListener ml = new MoveListener();
            timer = new Timer(5, ml);
            addMouseListener(new MouseAdapter() {
                @Override
                public void mousePressed(final MouseEvent e) {
                    if (timer.isRunning()) {
                        return;
                    xM = e.getX();
                    yM = e.getY();
                    int xC = circle.getX();
                    int yC = circle.getY();
                    stepX = (xM - xC) / 10;
                    stepY = (yM - yC) / 10;
                    timer.start();
        @Override
        public void paintComponent(final Graphics g) {
            super.paintComponent(g);
            circle.fill(g);
        private class MoveListener implements ActionListener {
            public void actionPerformed(final ActionEvent e) {
                if ((stepX > 0 && circle.getX() >= xM)
                        || (stepX < 0 && circle.getX() <= xM)) {
                    stepX = 0;
                if ((stepY > 0 && circle.getY() >= yM)
                        || (stepY < 0 && circle.getY() <= yM)) {
                    stepY = 0;
                if (stepX == 0 && stepY == 0) {
                    timer.stop();
                    circle.setLocation(xM, yM);
    /* add this method in the class "Circle":
        public void setLocation(int xM, int yM) {
            centerX = xM;
            centerY = yM;
                } else {
                    circle.move(stepX, stepY);
                repaint();
    }

  • How to change default font in Numbers?

    Is it possible to somehow change the default font when creating new documents in Numbers from "Helvetica Neue" to just "Helvetica", size 11? Changing the font and saving the document as new template simply does not work since the font in newly created tables in the new document using the new template still falls back to "Helvetica Neue".

    Here is an enhanced version.
    You may use it with the three components of iWorks.
    It is also available for free on my iDisk:
    <http://idisk.me.com/koenigyvan-Public?view=web>
    Download:
    For_iWork:iWork '09:setiWork_defaultfont.zip
    --[SCRIPT setiWork_defaultfont]
    Si vous choisissez "Pages" vous verrez:
    /* ----- Font Names */
    "FONT_Helvetica" = "Helvetica";
    "FONT_Helvetica-Bold" = "Helvetica-Bold";
    "FONT_Helvetica-Oblique" = "Helvetica-Oblique";
    "FONT_LucidaGrande" = "LucidaGrande";
    La police utilisée par défaut dans les textes, les notes et les tables est celle dont le descripteur est "FONT_Helvetica"
    éditez la ligne correspondante comme suit:
    "FONT_Helvetica" = "nomDeVotrePolice";
    Par exemple, pour utiliser Palatino, remplacez nomDeVotrePolice par "Palatino-Roman"
    Enregistrez le fichier ainsi modifié par (cmd + S)
    Vous trouverez plus bas une liste de noms de polices.
    Si vous choisissez "Numbers" vous verrez:
    /* ----- Font Names */
    "FONT_Helvetica" = "Helvetica";
    "FONT_HelveticaNeue" = "HelveticaNeue";
    "FONT_HelveticaNeue-Bold" = "HelveticaNeue-Bold";
    "FONT_LucidaGrande" = "LucidaGrande";
    "FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
    La police utilisée par défaut dans les textes, les notes et les tables est celle dont le descripteur est "FONT_HelveticaNeue"
    éditez la ligne correspondante comme suit:
    "FONT_HelveticaNeue" = "nomDeVotrePolice";
    Si vous choisissez "Keynote" vous verrez:
    "STYLESeries2" = "Series_2";
    "STYLE_None" = "Aucun";
    "STYLESeries5" = "Series_5";
    "STYLESeries3" = "Series_3";
    "FONT_LucidaGrande" = "LucidaGrande";
    "FONT_Helvetica" = "Helvetica";
    "STYLE_Free Form" = "Format libre";
    "STYLESeries1" = "Series_1";
    "FONT_GillSans" = "GillSans";
    "STYLE_Normal" = "Normal";
    "STYLESeries0" = "Series_0";
    "FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
    "STYLESeries4" = "Series_4";
    La police utilisée par défaut dans les textes, les notes et les tables est celle dont le descripteur est "FONT_GillSans"
    éditez la ligne correspondante comme suit:
    "FONT_GillSans" = "nomDeVotrePolice";
    If you choose "Pages" you will see:
    /* ----- Font Names */
    "FONT_Helvetica" = "Helvetica";
    "FONT_Helvetica-Bold" = "Helvetica-Bold";
    "FONT_Helvetica-Oblique" = "Helvetica-Oblique";
    "FONT_LucidaGrande" = "LucidaGrande";
    The font used as default for tables is the one whose descriptor is "FONT_Helvetica"
    edit the line as:
    "FONT_Helvetica" = "yourFontName";
    For instance, to use Palatino, replace "yourFontName" by "Palatino-Roman"
    Save the file (cmd + S)
    If you choose "Numbers" you will see:
    /* ----- Font Names */
    "FONT_Helvetica" = "Helvetica";
    "FONT_HelveticaNeue" = "HelveticaNeue";
    "FONT_HelveticaNeue-Bold" = "HelveticaNeue-Bold";
    "FONT_LucidaGrande" = "LucidaGrande";
    "FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
    The font used as default for tables is the one whose descriptor is "FONT_HelveticaNeue"
    edit the line as:
    "FONT_HelveticaNeue" = "yourFontName";
    If you choose "Keynote" you will see:
    "STYLESeries2" = "Series_2";
    "STYLE_None" = "Aucun";
    "STYLESeries5" = "Series_5";
    "STYLESeries3" = "Series_3";
    "FONT_LucidaGrande" = "LucidaGrande";
    "FONT_Helvetica" = "Helvetica";
    "STYLE_Free Form" = "Format libre";
    "STYLESeries1" = "Series_1";
    "FONT_GillSans" = "GillSans";
    "STYLE_Normal" = "Normal";
    "STYLESeries0" = "Series_0";
    "FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
    "STYLESeries4" = "Series_4";
    The font used as default for tables is the one whose descriptor is "FONT_GillSans"
    edit the line as:
    "FONT_GillSans" = "yourFontName";
    Here are some true font names:
    Arial-Black
    Arial-BoldItalicMT
    Arial-BoldMT
    Arial-ItalicMT
    ArialHebrew
    ArialHebrew-Bold
    ArialMT
    ArialNarrow
    ArialNarrow-Bold
    ArialNarrow-BoldItalic
    ArialRoundedMTBold
    ArialUnicodeMS
    Didot
    Didot-Bold
    Didot-Italic
    Georgia
    Georgia-Bold
    Georgia-BoldItalic
    Georgia-Italic
    Helvetica
    Helvetica-Oblique
    Helvetica-Bold
    Helvetica-BoldOblique
    HelveticaNeue-CondensedBold
    HelveticaNeue-CondensedBlack
    HelveticaNeue-UltraLight
    HelveticaNeue-UltraLightItalic
    HelveticaNeue-Light
    HelveticaNeue-LightItalic
    HelveticaNeue-Regular
    HelveticaNeue-Italic
    HelveticaNeue-Bold
    HelveticaNeue-BoldItalic
    Julius
    LucidaGrande
    LucidaGrande-Bold
    Palatino-Roman
    Palatino-Italic
    Palatino-Bold
    Palatino-boldItalic
    Yvan KOENIG (Vallauris, FRANCE)
    5 mars 2009
    on run
    if my parleFrancais() then
    set prompt1 to "Choisir l'application"
    set prompt2 to "Choisir un modèle"
    set prompt3 to "Choisir une localisation"
    else
    set prompt1 to "Choose the application"
    set prompt2 to "Choose a template"
    set prompt3 to "Choose a localization"
    end if
    choose the application *)
    set theApp to choose from list {"Pages", "Numbers", "Keynote"} with prompt prompt1
    if theApp is false then error -128
    set theApp to item 1 of theApp
    define some parameters *)
    if theApp is "Pages" then
    set allowed to {"com.apple.iWork.Pages.template", "com.apple.iWork.Pages.sfftemplate"}
    set sub to "Templates"
    set theStrings to "Localizable.strings"
    else if theApp is "Numbers" then
    set allowed to {"com.apple.iWork.Numbers.template", "com.apple.iWork.Numbers.sfftemplate"}
    set sub to "Templates"
    set theStrings to "Localizable.strings"
    else (* it is "Keynote" *)
    set allowed to {"com.apple.iWork.Keynote.kth", "com.apple.iWork.Keynote.sffkth"}
    set sub to "Themes"
    set theStrings to "fontsAndText.strings"
    end if
    choose the template *)
    set p2f to (path to applications folder as text) & "iWork '09:" & theApp & ".app:Contents:Resources:" & sub
    set p2f to (choose file with prompt prompt2 default location (p2f as alias) of type allowed) as text
    choose the localization folder *)
    set p2f to p2f & "Contents:Resources"
    set p2f to (choose folder default location (p2f as alias) with prompt3) as text
    open the localizable.strings file *)
    tell application "Finder"
    set nb to count of (files of folder p2f whose name starts with "localizable")
    if nb = 1 then duplicate file theStrings of folder p2f (* as there is no backup, duplicate "localizable.strings" for safe *)
    open file theStrings of folder p2f
    end tell -- Finder
    end run
    --=====
    on parleFrancais() (* Check if Pages is running in French *)
    local z
    try
    tell application "Pages" to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z = "Annuler")
    end parleFrancais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE dimanche 8 mars 2009 13:07:38)

  • How to change axis values in Numbers

    In v1.7 I have tried to change the axis values on existing charts but can't find how to do it...
    So I tried to create bar charts from scratch in order to rebuild the old ones with the new axis data but I can't find out how to set any of the axis values on chart creation now!!
    Has something changed - or am I just thick/blind?!!

    Is it so difficult to read given answers ?
    Barry described the correct scheme.
    In the table "to_chart", the cell A1 contains :
    =ROUNDUP(ABS(MIN(Tableau 1 :: B:E))/10,0)*10
    The cell B2 embed the formula :
    =$A$1+Tableau 1 :: B2
    Apply fill down and fill to the right.
    On the left edge, the colored rectangle is a text block in which I inserted the label values.
    Of course if you dislike this scheme, you are perfectly free to use an other application.
    Yvan KOENIG (VALLAURIS, France) lundi 4 juillet 2011 14:37:56 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How to change the direction of movement in atable from left to right?

    As the title says i want to change the movement direction in the cells of a table in pages when i click tab key from "left to right" to "right to left", is that possible?

    It seams that we aren't using the same application.
    In mine, if the cell C3 is selected, pressing shift + tab select the cell B3 which is what you wanted in your original post (or I understood it wrongly).
    If what you want is the ability to insert a new row above the current one or at top of a table, you can't do that this way.
    Same response if you want to insert a new column to the left of the table.
    To do that, the soluce is to select the top row or the leftmost column.
    There is a funny bug in the menu items.
    If your table has a header row, entering the menu Format > Table, we get four items:
    Insert new header above
    Insert new header below
    if we are in the header row
    or
    Insert new row above
    Insert new row below
    Insert a column before
    Insert a column after
    These four menus items have shortcuts :
    option up arrow
    option down arrow
    option left arrow
    option right arrow
    If the table has no header, the menu items are :
    Insert new row above
    Insert new row below
    Insert a column before
    Insert a column after
    None of them display a shortcut *_but the shortcuts are active_*
    Yvan KOENIG (VALLAURIS, France) samedi 11 septembre 2010 23:52:27

  • How to change the direction of play on an ipod playlist/podcast

    I play a lot of Podcasts on my Classic Ipod 160, and something that's bothered me for ages.
    If I have a particular podcast with more that 1 episode on it to play, I will usually want to play them in order from oldest to newest.
    However, the ipod only wants to play from the top of the list to the bottom, the top being the newest episode, the bottom being the oldest.
    So, I end up having to scroll down to the bottom, play the episodes one at a time, and manually move my choice of episode to the next newest after the episode I was listening to finished.
    When I got my first ipod, a looooonnnnnggggg time ago, you could start playing a particular podcast at the oldest episode, and the ipod would just move on to the next newest episode in a podcast automatically.
    Then, at some point, at some particular ipod software upgrade, or itunes upgrade, The ipod stopped functioning the way I wanted it to, and I had to go about playing them the awkward way. That was about 2 ipods ago.
    Now, my current Ipod, on 1 particular podcast, is allowing me to play the podcast episode list in the old way that I want, where I just select the oldest episode, and I can just let it play on its own, and the list will move on to the next newest episode on its own.
    This makes me think that there may be someway of controlling the directionality of play on a podcast episode list.

    Hi Frank,
    this is not easy to talk with words. First, since your antennas are articulated, you can achieve any coverage without moving the AP itself.
    The coverage patterns seen here :
    http://www.cisco.com/en/US/docs/wireless/antenna/installation/guide/5135dw.html
    can be identified like this :
    Place the ap on a desk. Cisco logo facing upwards (ceiling)
    Antennas are straight up (like they would be if they were not articulated). The antennas pointing like fingers to the ceilign.
    Then you have the coverage seen on the diagrams of the link I pasted.
    H-view is a top view (you are viewing the AP from the ceiling on your desk). You can see it's radiating in all horizontal direcitons.
    E-view is a side view (you are sitting on your chair looking at the AP at the same heigh as it) : You can see it's radiating left and right but not so much up and down of the AP.
    So this is a "floor" coverage.
    If you want a coverage "above and below" the AP then you should articulate the antennas to be parrallel to the AP (pointing the wall then). Direction will nto matter.
    I hope it's clear. I'm sorry I'm not using your diagrams as reference as I didn't really understand their significations as it's hard to view this kidn of stuff without 3d view :-)
    Nicolas
    ===
    Don't forget to rate answers that you find useful

  • How to change the direction of text writing: item is top to bottem

    hi, i will make a notepad. and i will make its text's direction: item is top to bottem and line is left to right.
    i cant do this, please help me!

    What you need is:
    http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html
    That gives you a very nice vertical text, with support for rotation
    control so Katakana and Arabic style writing can be done properly.
    James.

  • How to change the direction of the Spry menu?

    Is there a way to change the SpryMenuBarVertical menu to fold
    out to the left? I am using this menu on the right side of the
    website and it now folds out to the right (standard). I have tried
    for hours to change the css (float left, etc) but must have
    overlooked something. Can somebody please help?
    This is what it looks like so far...
    http://www.norske.nl/zomer/tours/auto01.html
    (Click on the orange field: "50 Autotours")

    Is there a way to change the SpryMenuBarVertical menu to fold
    out to the left? I am using this menu on the right side of the
    website and it now folds out to the right (standard). I have tried
    for hours to change the css (float left, etc) but must have
    overlooked something. Can somebody please help?
    This is what it looks like so far...
    http://www.norske.nl/zomer/tours/auto01.html
    (Click on the orange field: "50 Autotours")

Maybe you are looking for

  • Why is lightning to 30 pin adapter still not available in november

    iPhone 5 (and lightning) launch was in september and the apple site said that adapters would be shipping in october. This is now november and the site still says shipping in 5-7 days. How was this overlooked during the iphone 5 production? No one at

  • How do u video share w/ the Nokia 6790 surge? Doe...

    How do u video share w/ the Nokia 6790 surge?  Does it take an app. to do so?

  • Profit and Loss Percentage Challenge

    We control our Gross Margins and Costs by expressing every Profit and Loss item as a percentage of the Total Sales. So our Total Sales is 100%. So everything is divided by the 100% to calculate a Percentage. So for example a Gross margin is 45% (Of t

  • Modify ALV row properties

    Hi everyone. I'm working on this ALV report wich rows must be editable or not depending on a field's value. This is: if a certain field is different from 0, the ALV row should be editable. Otherwise, it shouldn't. Is this possible? If it is, how can

  • Using RoboHelp 7 CHM Output on a Server

    CHM output from RoboHelp 7 (6, . . .), as well as any application that produced CHM, will not load on a network device. This is a known issue confirmed by Adobe. When Microsoft Security Update 896358 was installed to address remote code execution, ch