whenever create multi column table in wysiwyg, first column extends beyond width specified. e.g
even if specify 1px or 1% width extends 90% of total width. no matter content enter,when th cant control width when displayed on site
anyone ideas?
regards,
jim mccann
a table 1 row , 3 columns should behave way want
2 or more rows content in columns of other rows affect width of other rows.
another thing might interfering settings table in template_css.css. css styles override settings in html code.
cheers
Popular posts from this blog
hi, i want install mambelfish 1.5 component in joomla! 1.0.4 stable [ sundial ] site, reason following error: failed create directory "/home/virtual/site13/fst/var/www/html/components/com_mambelfish/" i new joomla! , still not familiar it. great if build multilingual sites using joomla!. just clarify... media/ writeable administrator/components/ writeable components/ writeable images/stories/ writeable how install component? use upload package file or use install directory ? Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components
whenever try compile code following error : 'error: expected initializer before 'void'' code: [select] #include <afmotor.h> af_dcmotor motor1(1, motor12_64khz); // create motor #1, 64khz pwm af_dcmotor motor2(2, motor12_64khz); // motor #2 void setup() { serial.begin(9600); // set serial library @ 9600 bps serial.println("motor test!"); } void loop() { go(); backup(); halt(); } void go() { serial.println("all motors ahead - fast"); motor1.run(forward); motor2.run(forward); motor1.setspeed(255); motor2.setspeed(255); return; } void backup() { serial.println("all motors backward - fast"); motor1.run(backward); motor2.run(backward); motor1.setspeed(255); motor2.setspeed(255); return; } void halt() { uint8_t i; for (i=255; i!=0; i--) ...
i'd store 4 digit passcode eeprom. i'm thinking of doing following: code: [select] char passcode[4] = eeprom.read(1, 2, 3, 4) does make sense? is there simple way read eeprom directly array? quote does make sense? yes. work? no. quote is there simple way read eeprom directly array? use loop read value each element of array. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Using EEPROM to store an array arduino
Comments
Post a Comment