Text running outside div

I am testing out a layout and am having trouble containing
text within
a DIV. I thought i have done everything correctly but when I
continue
typing a line into #text-dash, it flows out horizontally into
the
container DIV.
I have looked closely at the HTML and CSS from a template
supplied
with dreamweaver where the text does not flow outside the DIV
("Sidebar") into the container and I can't really see any
substantial
differences in the code but I must be missing something. Can
someone
please take a look and give me a hand with this?
Thanks
Mike
I am including the code from my test page, followed by the
code from
the dreamweaver template
MY CODE:
<style type="text/css">
<!--
body {
margin: 0px;
padding: 0px;
#container {
background-color: #CC9966;
margin: 50px;
width: 600px;
float: left;
#test-dash {
background-image: url(img/nocities.jpg);
background-repeat: repeat-y;
width: 134px;
padding-top: 4px;
padding-right: 20px;
padding-bottom: 0px;
padding-left: 20px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
float: left;
-->
</style>
</head>
<body>
<div id="container">
<div id="test-dash">
<p>jkjkjjk jkjkjjj
oiiiillplll;kjkjkjkjkjkjkjkkjkjkjkjkjk</p>
<p>iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii</
p>
<p>;;oioioioioioioioioioi;;;;jjj9iuiiii0-
iiii0i0i0i0i0i0iiiiioioioioioioioioioioioioioioioi</p>
<p>iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii</
p>
<p> </p>
<p>kjkkkkkkkkkkkkkkkkkkkkkkkk</p>
<p> </p>
<p>jkjkjjkjkjkjkjkkkkkkkkk,</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>vmmbvvvvbvbvvbvbvbvbvbvbvbvbv</p>
</div>
</div>
</body>
</html>
FROM THE TEMPLATE:
body {
font: 100% Verdana, Arial, Helvetica, sans-serif;
background: #666666;
margin: 0; /* it's good practice to zero the margin and
padding of
the body element to account for differing browser defaults */
padding: 0;
text-align: center; /* this centers the container in IE 5*
browsers. The text is then set to the left aligned default in
the
#container selector */
color: #000000;
.twoColFixLt #container {
width: 780px; /* using 20px less than a full 800px width
allows
for browser chrome and avoids a horizontal scroll bar */
background: #FFFFFF;
margin: 0 auto; /* the auto margins (in conjunction with a
width)
center the page */
border: 1px solid #000000;
text-align: left; /* this overrides the text-align: center
on the
body element. */
.twoColFixLt #sidebar1 {
float: left; /* since this element is floated, a width must
be
given */
width: 200px; /* the actual width of this div, in standards-
compliant browsers, or standards mode in Internet Explorer
will
include the padding and border in addition to the width */
background: #EBEBEB; /* the background color will be
displayed for
the length of the content in the column, but no further */
padding: 15px 10px 15px 20px;
.fltrt { /* this class can be used to float an element right
in your
page. The floated element must precede the element it should
be next
to on the page. */
float: right;
margin-left: 20px;
.fltlft { /* this class can be used to float an element left
in your
page */
float: left;
margin-right: 10px;
.clearfloat { /* this class should be placed on a div or
break element
and should be the final element before the close of a
container that
should fully contain a float */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
-->
</style>
<!--[if IE 5]>
<style type="text/css">
/* place css box model fixes for IE 5* in this conditional
comment */
.twoColFixLt #sidebar1 { width: 230px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional
comment
.twoColFixLt #sidebar1 { padding-top: 30px; }
.twoColFixLt #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout
it needs
to avoid several bugs */
</style>
<![endif]--></head>
<body class="twoColFixLt">
<div id="container">
<div id="sidebar1">
<h3>Sidebar1 Content</h3>
<p>The background color on this div will only show for
the length
of the content. If you'd like a dividing line instead, place
a border
on the left side of the #mainContent div if it will always
contain
more content. </p>
<p>Donec eu mi sed turpis feugiat feugiat. Integer
turpis arcu,
pellentesque eget, kkkjjjkcursus et, fermentum ut,
s;;;;;;;;;;;;apien. Fusce metus mi, eleifend sollicitudin,
molestie
id, varius et, nibh. Donec nec libero.</p>
<!-- end #sidebar1 --></div>
<!-- This clearing element should immediately follow the
#mainContent div in order to force the #container div to
contain all
child floats -->
<br class="clearfloat" />
<!-- end #container --></div>
</body>
</html>

Try putting spaces into your test text - if it doesn't make a
difference,
please upload and post the URL, it's easier to check your
code.
Jo
"blueman2" <[email protected]> wrote in
message
news:[email protected]...
>I am testing out a layout and am having trouble
containing text within
> a DIV. I thought i have done everything correctly but
when I continue
> typing a line into #text-dash, it flows out horizontally
into the
> container DIV.
>
> I have looked closely at the HTML and CSS from a
template supplied
> with dreamweaver where the text does not flow outside
the DIV
> ("Sidebar") into the container and I can't really see
any substantial
> differences in the code but I must be missing something.
Can someone
> please take a look and give me a hand with this?
>
> Thanks
> Mike
>
> I am including the code from my test page, followed by
the code from
> the dreamweaver template
>
> MY CODE:
>
> <style type="text/css">
> <!--
> body {
> margin: 0px;
> padding: 0px;
> }
>
> #container {
> background-color: #CC9966;
> margin: 50px;
> width: 600px;
> float: left;
> }
>
> #test-dash {
> background-image: url(img/nocities.jpg);
> background-repeat: repeat-y;
> width: 134px;
> padding-top: 4px;
> padding-right: 20px;
> padding-bottom: 0px;
> padding-left: 20px;
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 10px;
> float: left;
> }
>
> -->
> </style>
> </head>
>
> <body>
> <div id="container">
> <div id="test-dash">
> <p>jkjkjjk jkjkjjj
oiiiillplll;kjkjkjkjkjkjkjkkjkjkjkjkjk</p>
>
<p>iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii</
> p>
> <p>;;oioioioioioioioioioi;;;;jjj9iuiiii0-
>
iiii0i0i0i0i0i0iiiiioioioioioioioioioioioioioioioi</p>
>
>
<p>iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii</
> p>
> <p> </p>
> <p>kjkkkkkkkkkkkkkkkkkkkkkkkk</p>
> <p> </p>
> <p>jkjkjjkjkjkjkjkkkkkkkkk,</p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p> </p>
> <p>vmmbvvvvbvbvvbvbvbvbvbvbvbvbv</p>
> </div>
> </div>
> </body>
> </html>
>
> FROM THE TEMPLATE:
>
> body {
> font: 100% Verdana, Arial, Helvetica, sans-serif;
> background: #666666;
> margin: 0; /* it's good practice to zero the margin and
padding of
> the body element to account for differing browser
defaults */
> padding: 0;
> text-align: center; /* this centers the container in IE
5*
> browsers. The text is then set to the left aligned
default in the
> #container selector */
> color: #000000;
> }
>
> .twoColFixLt #container {
> width: 780px; /* using 20px less than a full 800px width
allows
> for browser chrome and avoids a horizontal scroll bar */
> background: #FFFFFF;
> margin: 0 auto; /* the auto margins (in conjunction with
a width)
> center the page */
> border: 1px solid #000000;
> text-align: left; /* this overrides the text-align:
center on the
> body element. */
> }
>
> .twoColFixLt #sidebar1 {
> float: left; /* since this element is floated, a width
must be
> given */
> width: 200px; /* the actual width of this div, in
standards-
> compliant browsers, or standards mode in Internet
Explorer will
> include the padding and border in addition to the width
> background: #EBEBEB; /* the background color will be
displayed for
> the length of the content in the column, but no further
> padding: 15px 10px 15px 20px;
> }
>
> .fltrt { /* this class can be used to float an element
right in your
> page. The floated element must precede the element it
should be next
> to on the page. */
> float: right;
> margin-left: 20px;
> }
>
> .fltlft { /* this class can be used to float an element
left in your
> page */
> float: left;
> margin-right: 10px;
> }
>
> .clearfloat { /* this class should be placed on a div or
break element
> and should be the final element before the close of a
container that
> should fully contain a float */
> clear:both;
> height:0;
> font-size: 1px;
> line-height: 0px;
> }
>
> -->
> </style>
> <!--[if IE 5]>
> <style type="text/css">
> /* place css box model fixes for IE 5* in this
conditional comment */
> .twoColFixLt #sidebar1 { width: 230px; }
> </style>
> <![endif]--><!--[if IE]>
> <style type="text/css">
> /* place css fixes for all versions of IE in this
conditional comment
> */
> .twoColFixLt #sidebar1 { padding-top: 30px; }
> .twoColFixLt #mainContent { zoom: 1; }
> /* the above proprietary zoom property gives IE the
hasLayout it needs
> to avoid several bugs */
> </style>
> <![endif]--></head>
>
> <body class="twoColFixLt">
>
> <div id="container">
> <div id="sidebar1">
> <h3>Sidebar1 Content</h3>
> <p>The background color on this div will only show
for the length
> of the content. If you'd like a dividing line instead,
place a border
> on the left side of the #mainContent div if it will
always contain
> more content. </p>
> <p>Donec eu mi sed turpis feugiat feugiat. Integer
turpis arcu,
> pellentesque eget, kkkjjjkcursus et, fermentum ut,
> s;;;;;;;;;;;;apien. Fusce metus mi, eleifend
sollicitudin, molestie
> id, varius et, nibh. Donec nec libero.</p>
> <!-- end #sidebar1 --></div>
> <!-- This clearing element should immediately follow
the
> #mainContent div in order to force the #container div to
contain all
> child floats -->
> <br class="clearfloat" />
> <!-- end #container --></div>
> </body>
> </html>
>

Similar Messages

  • Text moving outside div

    Hello again,
    Firstly, I would like to thank you for help once again. I've got another problem with Div's and I cannot find out what I'm doing wrong, on the live view everything looks fine but in the browser the text is outside the frame? Plese see pictures below:

    In addition to what David already said about   APDivs, your images for the 3 middle boxes need to be sliced and re-assembled in DW to form flexible containers.
    Have a look at this basic  demo:
    http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
    See also, taking  a Fireworks (or Photoshop) comp to a CSS based layout in DW
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Applet not running outside of netBeans

    I have an applet that was compiled & built within NetBeans 4.1 under jdk1.5.0_04. It runs perfectly inside of NetBeans. It doesn't run outside of NetBeans.
    I created the HTML launcher file and placed it in the same folder where the applet class file resides.
    <HTML>
    <BODY>
    <APPLET CODE=Main.class
    WIDTH=250
    HEIGHT=130>
    </APPLET>
    </BODY>
    </HTML>
    When I launch the HTML file under windows XP I get a NullPointerException.
    When I try to use appletviewer I get the following:
    Warning:Can't read AppletViewer properties file: c:\Documents and Settings\walter88\.hotjava\properties using defaults. I/O exception while reading: c:\Program (The system cannot find the file specified).
    Someone please help this 'newbie'.
    Thanks.

    Thanks for your reply. here is the applet code:
    package javaapplication4;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.DecimalFormat;
    public class Main extends JFrame
        implements ActionListener {
        private JButton button;
        public static void main(String[] args) {
            Main frame = new Main();
            frame.setSize(400, 300);
            frame.createGUI();
            frame.setVisible(true);
        private void createGUI() {
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            Container window = getContentPane();
            window.setLayout(new FlowLayout() );
            button = new JButton("Press me");
            window.add(button);
            button.addActionListener(this);
        public void actionPerformed(ActionEvent event) {
            DecimalFormat df1 = new DecimalFormat( "#####.0000");
            String Od, Length, Weight, Density;
         double od, length, weight, density, const_1, const_2, or, wall;
         Od = JOptionPane.showInputDialog("Enter OD of tubing (inch)");
         Length = JOptionPane.showInputDialog("Enter length (inch)");
         Weight = JOptionPane.showInputDialog("Enter weight (grams)");
         Density = JOptionPane.showInputDialog("Enter density (lbs/in3)");
         od = Double.parseDouble( Od );
         length = Double.parseDouble( Length );
         weight = Double.parseDouble( Weight );
         density = Double.parseDouble( Density );
         or = .5 * od;
         const_1 = 3.14159 * 453.59 * density * length;
         const_2 = -4 * const_1 * or;
         wall = (-const_2 - Math.sqrt(const_2 * const_2 - 4 * const_1 * weight))/(2 * const_1);
            JOptionPane.showMessageDialog(null, "Wall thickness is: " + df1.format(wall) + " inch");
    }

  • PAPI client is running outside a j2ee container

    Hi,
    I install BPM J2EE 10.3.1 for linux and weblogic 10.3 for linux on Red Hat Linux Enterprise 5. The database' version is 10.2.0.1 for windows and the database is install in window server 2003 sp1 on another machine.
    I search this forum and copy and change the code. But I still get error "PAPI client is running outside a j2ee container"
    The java code runs in the 3rd machine.
    -------------------------java code-------------------------------------------------
    Properties configuration = new Properties();
    configuration.setProperty(ProcessService.DIRECTORY_ID, "Default");
    configuration.setProperty(ProcessService.DIRECTORY_PROPERTIES_FILE, "F:\\share\\192.168.1.103\\directory.xml");
    Properties systemProperties = System.getProperties();
    systemProperties.setProperty("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory");
    systemProperties.setProperty("java.naming.provider.url", "t3://192.168.1.103:7001");
    ProcessService processService = ProcessService.create(configuration);
    ConnectionPassport Conpassport = processService.createPassportWithPreset("container-auth");
    Conpassport.setParticipant("jcooper");
    Conpassport.setPassword("welcome1");
    System.out.println("34");
    Conpassport.fillPassport();
    System.out.println("36");
    ProcessServiceSession session = processService.createSession(Conpassport, null);
    System.out.println("38");
    String processName = "/processA";
    Arguments arguments = Arguments.create();
    System.out.println("41");
    session.processCreateInstance(processName, "BeginIn", arguments);//
    System.out.println("43");
    -----------------------error message----------------------------------------------------
    D:\JDeveloper11g_20090318\jdk160_05\bin\javaw.exe -client -classpath E:\Jdeveloper10131_20090318\jdev\mywork\GDHZDJDCIntegrationTest\HZGTprocess\classes;D:\BPM_HOME_standalone\client\papi\lib\b1oracle.jar;D:\BPM_HOME_standalone\client\papi\lib\b1util.jar;D:\BPM_HOME_standalone\client\papi\lib\b1base.jar;D:\BPM_HOME_standalone\client\papi\lib\fuegopapi-client.jar hzgtprocess.VM_192_168_1_103_linux
    Creating connector [fuego:SQL]
    Creating ProcessService with id 'oracle/2009-09-14 13:23:12+08:00'.
    ********* PAPI (Version 10.3.1.0.0 Mantainance Pack 1 Build # 98982 ) is starting *********
    Local folder /tmp\system\Schema3387192-437105321\catalogs found.
    Loading catalogs from local folder: /tmp\system\Schema3387192-437105321\catalogs
    0 jars found locally.
    [CatalogMgrCache] =======================
    Registering CatalogMgr [oracle/2009-09-14 13:23:12+08:00] ...CatalogManagerCache 20195943:
    Managers:
    Counters:
    [CatalogMgrCache] =======================
    CatalogMgr [oracle/2009-09-14 13:23:12+08:00] REGISTERED!CatalogManagerCache 20195943:
    Managers:
    {oracle/2009-09-14 13:23:12+08:00=fuego.util.LocalCatalogManager@1cbda0a}
    Counters:
    ProcessService 'oracle/2009-09-14 13:23:12+08:00' created successfully.
    34
    36
    38
    41
    Unreachable Engine Tolerance (seconds):
    by default: 0
    to be used: 0
    This papi client will not cache exceptions which imply that an engine could not be reached.
    A user transaction provider is not available for reading Papi News received through the JMS Topic (probable reason: PAPI client is running outside a j2ee container). Papi News will be processed anyway. Details: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
    The connection to the JMS Topic engine was completed successfully.
    Exception in thread "main" fuego.papi.ProcessNotAvailableException: Process '/processA#Default-1.0' not available.
         at fuego.papi.impl.AbstractProcessLoader.createProcess(AbstractProcessLoader.java:96)
         at fuego.papi.impl.AbstractProcessLoader.createProcess(AbstractProcessLoader.java:36)
         at fuego.papi.impl.SessionProcessLoader.load(SessionProcessLoader.java:254)
         at fuego.papi.impl.ProcessManager.get(ProcessManager.java:894)
         at fuego.papi.impl.ProcessServiceImpl.getProcess(ProcessServiceImpl.java:1380)
         at fuego.papi.impl.SessionProcessManager.getProcess(SessionProcessManager.java:143)
         at fuego.papi.impl.ProcessServiceSessionImpl.processGet(ProcessServiceSessionImpl.java:2665)
         at fuego.papi.impl.ProcessServiceSessionImpl.checkBeginPermissions(ProcessServiceSessionImpl.java:4286)
         at fuego.papi.impl.ProcessServiceSessionImpl.processCreateInstance(ProcessServiceSessionImpl.java:3177)
         at hzgtprocess.VM_192_168_1_103_linux.main(VM_192_168_1_103_linux.java:42)
    Caused by: fuego.papi.impl.EngineNotAvailableException: Cannot reach engine 'bpmengine' at URL: ''.
         at fuego.papi.impl.EngineNotAvailableException.wrapConnectionException(EngineNotAvailableException.java:80)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.createSecureEngine(J2EEEngineAccessImpl.java:181)
         at fuego.papi.impl.ProcessServiceImpl.createSecureEngine(ProcessServiceImpl.java:1111)
         at fuego.papi.impl.ProcessServiceSessionImpl$2.run(ProcessServiceSessionImpl.java:3987)
         at fuego.papi.impl.ProcessServiceImpl.executeEngineOp(ProcessServiceImpl.java:1693)
         at fuego.papi.impl.ProcessServiceSessionImpl.getSecureEngine(ProcessServiceSessionImpl.java:3995)
         at fuego.papi.impl.AbstractProcessLoader.createProcess(AbstractProcessLoader.java:48)
         ... 9 more
    Caused by: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:657)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at fuego.util.InitialContextProvider.create(InitialContextProvider.java:44)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.createInitialContext(J2EEEngineAccessImpl.java:492)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.getInitialContext(J2EEEngineAccessImpl.java:293)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.getEngineHome(J2EEEngineAccessImpl.java:277)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.getSecureEngineInterface(J2EEEngineAccessImpl.java:333)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.createSecureEngine(J2EEEngineAccessImpl.java:178)
         ... 14 more
    Caused by: java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:46)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:654)
         ... 23 more
    The connectivity to the JMS Topic for the server synchronization information has been temporarily interrupted.
    Details:
    The connectivity to the JMS Topic has been broken due to a JNDI Context initialization problem.
    Details:
    javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
    Caused by: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory
    Caused by: weblogic.jndi.WLInitialContextFactory
    fuego.papi.impl.j2ee.JMSTopicLookUpException: The connectivity to the JMS Topic has been broken due to a JNDI Context initialization problem.
    Details:
    javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl$TopicSubscriberImpl.lookupTopic(J2EEEngineAccessImpl.java:665)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl$TopicSubscriberImpl.run(J2EEEngineAccessImpl.java:574)
    Caused by: javax.naming.NoInitialContextException: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory [Root exception is java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory]
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:657)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at fuego.util.InitialContextProvider.create(InitialContextProvider.java:44)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.createInitialContext(J2EEEngineAccessImpl.java:492)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl.access$1000(J2EEEngineAccessImpl.java:68)
         at fuego.papi.impl.j2ee.J2EEEngineAccessImpl$TopicSubscriberImpl.lookupTopic(J2EEEngineAccessImpl.java:660)
         ... 1 more
    Caused by: java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at com.sun.naming.internal.VersionHelper12.loadClass(VersionHelper12.java:46)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:654)
         ... 8 more
    Process exited.

    Could this be a CLASSPATH issue?
    Caused by: java.lang.ClassNotFoundException: weblogic.jndi.WLInitialContextFactory
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)

  • Internal calculation of the font tracking (text running width)

    Is it true, that in the english version the internal calculation of the font tracking (text running width) in InDesign is hard-coded in inch and could not changed in cm in the options. (I know that I could do this for the rulers)
    So we better should use a german version to avoid Problems with print shops or design agencies in Germany.

    In the past we had problems here in Germany when we use the english version of InDesign. We have some big files, each about 1200 pages and when we share this files with print shops or design agencies which uses the german version they had sometimes problems with the font tracking eg text run out of text boxes and so on. Adobe told us that can happen because the english version works internal with inch and we could not change this. So we start using the german version and all the problems where solved. Now we want to update to the actual version and had an internal discussion if we should order the english or german version.

  • BC product catalog stays outside div container

    BC  Ecommerce catalog content strays outside div container.
    Otherwise BC modules are looking good.
    Tried every kind of css adjustment but no luck yet.
    What do you think?
    Please Help
    Thanks, WillzShire
    https://firstnightvirginia.worldsecuresystems.com/wristbands

    looks like the class .container in bootstrap.css line #5401 is setting the width of your layout to 1170px. Which is over riding an eariler setting for same class up on line #202 in bootstrap.css. Since your table is set to 100% of it's overall container you are getting the overhang. if you change that setting to 940px (which is probably what you wanted anyway), the products should be within site layout.

  • Text Run Off

    Hi,
    I'm new to CS4, and kinetic Typography, so I was wondering if someone could point me in a direction to a tutorial relating to the creating technique used in the video below :-
    http://www.youtube.com/watch?v=mDUvPIIMeo0 at 0:22, where the texts runs off, or at least let me know what this technique is called.
    Thanks in advance.

    Probably not, though just as well you could of course convert Text to outlines and animate the anchor points of the resulting masks/ shape layer paths. It would just be considerably less efficient than having a solid with a linear wipe... Or you use effects like Minimax to extend... See this project for some idea on how to use it...
    Mylenium

  • Adding text to a div

    How do you add text to a div that has a menu bar in the bottom left corner? In other words how do you add text above the menu bar?

    <div>
         <p>test here</p> <-- paragraph
         <ul id="menu"> <--- your menubar
         </ul>
    </div>
    That?

  • Problem running outside netbeans

    Part of my application uses the poi project to extract text from a word doc file, this works fine when running from within netbeans, but as soon as i run it from outside, like from the command line, it crashes. I was wondering if anyone knew any common problems it could be for me to try as i can't seem to find the issue here....

    No i dont think that's my problem, classpath contains all relevant jars etc, I've had it up and running fine previously but now when it runs it basically just freezes my computer and needs to be closed from the task manager(sorry don't know the proper term hence my general 'crash' description), so I'm not getting any clues from error messages and the like, but being a bit inexperienced I just wondered if there were any other obvious problems that would cause this that i can look at

  • How can I create a vertical scroll for text in a 'div' in CSS Dreamweaver?

    Hi there,
    I need to flow a lot of text into a CSS div. However, I don't want a big long page as it will look ugly and be inconsistent with the other pages in the site.
    I need to be able to put in a vertical scroll directly in the div containing the text (not on the whole page) so the user can scroll the text down without moving down the whole page.
    Is there a way for me to do this?
    I'm a beginner to CSS so a step by step for dummies approach would be most helpful.
    Thanks in advance for any help!

    use the overflow:scroll property:
    http://www.w3schools.com/Css/pr_pos_overflow.asp

  • Text runs of the page / doesn't resize with window

    Hi,
    I have seen this before but cant figure out how to fix this:
    In Mail and other applicaitons that involve typing text the sentenses run off the "page".
    When I resize the window the lines dont' adapt to the window.
    I am stumped, please help :-)
    Rogier

    Howdy. See if this helps:
    https://discussions.apple.com/thread/5298047?tstart=150

  • Center text vertically in DIV.

    I need to center the text vertically in the div at the bottom
    of this page. How do I accomplish this? I searched this forum, but
    couldn't find anything on it.
    http://www.liquidfirefishing.com/ocmc

    It does not. It's specific to table cells, or things with the
    table-cell
    display style.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "kiusau" <[email protected]> wrote in
    message
    news:gnesja$osr$[email protected]..
    >
    quote:
    I need to center the text vertically in the div at the bottom
    of this
    > page.
    > How do I accomplish this?
    >
    > Create a single cell table inside the <div> tag
    and apply vertical
    > alignment
    > to the <tr> tag. I do not know, if vertical
    alignment works with the <p>
    > tag.
    >
    > Roddy
    >

  • How to edit the code of a text inside a div ?

    Hi! I need your help! =)
    How can I access the code of a DIV inside the Animate? I want to put some words in bold, and some other text formats.
    Thanks.

    Antonio,
    Sadly, there is no way to do it directly. Even in plain HTML application it is impossible to print text of UI control (<textarea> in this case).
    So you have to open new browser window containing entered text and let user print text himself. Or invoke window.print() on document load event.
    VS

  • How to determine if an icon's link is broken while running a dive

    I am using a "dive" to run through the icons of an authorware
    file. When I find a sound icon by:
    ICON_TYPE_SOUND := 10
    if CallTarget("IconType", _ChildIcon) = ICON_TYPE_SOUND then
    I would then like to determine if this icon's link is broken
    to the associated library file. I am not sure what property that I
    could interrogate that contains this information. I looked under
    the list of properties in the SetIconProperty() function, and did
    not see anything...like #awLinked, etc.
    What can I use to get this information?
    Thanks
    Mike

    Why not just use Xtras>Library links?
    "MN_Mike" <[email protected]> wrote in
    message
    news:g82559$7m1$[email protected]..
    >I am using a "dive" to run through the icons of an
    authorware file. When I
    > find a sound icon by:
    >
    > ICON_TYPE_SOUND := 10
    > if CallTarget("IconType", _ChildIcon) = ICON_TYPE_SOUND
    then
    >
    > I would then like to determine if this icon's link is
    broken to the
    > associated
    > library file. I am not sure what property that I could
    interrogate that
    > contains this information. I looked under the list of
    properties in the
    > SetIconProperty() function, and did not see
    anything...like #awLinked,
    > etc.
    >
    > What can I use to get this information?
    >
    > Thanks
    >
    > Mike
    >

  • Text running too wide

    I'm working on a small site, and for some reason the text on
    some of the pages are causing them to run really wide in Firefox.
    They display fine in IE and Safari. I've tried stripping out text
    formatting, but that hasn't helped. And some of the pages work
    fine, but when I do a Save As and paste in the problem text, they
    explode to the right. Can anyone help me out? The pages that don't
    work are:
    home.ptd.net/~judyross/
    home.ptd.net/~judyross/editorial.html
    home.ptd.net/~judyross/catalog.html
    But these two do:
    home.ptd.net/~judyross/illustration.html
    home.ptd.net/~judyross/contact.html
    Thanks in advance for your assistance!

    On line 64 remove nowrap="nowrap"
    Walt
    "judyross" <[email protected]> wrote in
    message
    news:f7rtm1$opb$[email protected]..
    > I'm working on a small site, and for some reason the
    text on some of the
    > pages
    > are causing them to run really wide in Firefox. They
    display fine in IE
    > and
    > Safari. I've tried stripping out text formatting, but
    that hasn't helped.
    > And
    > some of the pages work fine, but when I do a Save As and
    paste in the
    > problem
    > text, they explode to the right. Can anyone help me out?
    The pages that
    > don't
    > work are:
    > home.ptd.net/~judyross/
    > home.ptd.net/~judyross/editorial.html
    > home.ptd.net/~judyross/catalog.html
    >
    > But these two do:
    > home.ptd.net/~judyross/illustration.html
    > home.ptd.net/~judyross/contact.html
    >
    > Thanks in advance for your assistance!
    >

Maybe you are looking for

  • Simplel complex report query

    hi guru's i had prepared two complex reports seperately having the same Selection-screen , internal tables and declerations...now i have to combine both the reports into one single report....based upon <b>one field (i.e, filed PROCESS_TYPE)</b> of Se

  • Install Windows XP in Leopard WITHOUT Boot Camp - No More Disk Error

    For those of you having problems installing Windows XP in Boot Camp because of the formatting screen never showing up and then the system restarting with the dreaded: Press any key to boot from CD ..... Disk Error Press any key to restart I too spent

  • Sales Order Stock (For Repair Returns) - Valuated & Non-Valuated

    Greetings All, We are currently using sales order stock as quantity only for customer returns for repair (RMA Sales Order). As long as we do not give a credit to our customer, this is working. My problem is that some of our customers are requesting c

  • How can I ensure the content in iBooks on my iPad also syncs with my mini iPad?

    How can I ensure my content in iBooks on my iPad 3 syncs with the iBooks in my mini iPad?

  • Deleting pages - CS3

    I'm having a problem deleting pages in CS3 using the Pages Palette. When I try to delete multiple pages, it only deleted the last page of the selected range. I have also had the problem of it deleting a different page than the one I have selected in