Hello, we have released a new version of Likno Web jQuery Accordion Builder - version 2.1 Build #230

Check out What's New

- Added a user-friendly WYSIWYG CSS Editor for all CSS-related properties, making the software much easier to use.

jquery accordion css editor

- Added support for jQuery 1.8 and above.

- Fixed an issue that occurred when a "#" existed in one of the folder names in the Root Folder path.

- Fixed a case where some files got deleted when trying to link to them (specific configurations only).

All features here: http://www.likno.com/jquery-accordion/index.php

You can download the latest version at:

http://www.likno.com/jquery-accordion/download.php

- Added many interface enhancements for a better look & feel.

 

Tags: , , , , , , ,

 

Knowledge Base support case for Likno Web Accordion Builder,  abstracted and stripped of all user’s private info.


Initial Email From:
Sandy
l Email Subject: Accordion
Support Case Month: April 2013

How do I get the text to wrap so there is no scrolling within the panes?

Reply From: Likno Customer Support

Hello,

I checked your page and I see that you do not have a DOCTYPE, so your page is not considered as valid HTML.

no DOCTYPE html

Please try adding this as the first line in your page to see if this fixes the problem:

<!DOCTYPE html>

Note that this may make other errors visible in your page. One such issue I noticed in my test was that your main image appeared broken:

broken main image

To fix this, add the following CSS: “display: block;”

You can either add this to the specific image:

<IMG style="display: block;" SRC="images/anniversary/images/anniversary-cars_01.gif" WIDTH=900 HEIGHT=131 ALT="">

Or if you want this for all images, you can add it to the <head> of your your HTML:

<style>img { display: block; } </style>

I understand this may be some work, but it is something you have to do anyway if you want your pages to validate and be HTML5 compliant.

Note, that if you want to avoid most of this work for now and simply fix the accordion issue, you can use an older DOCTYPE definition that will not change your page appearance, such as the following (note this also replaces the <html> tag):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

Best Regards,
Kostas
Likno Customer Support
www.likno.com
Create any type of javascript menu (CSS menu, drop-down menu, sliding menu), button, html tree, modal window, tooltip, accordion, tab, scroller, jQuery slider or design for your websites!
Like us on Facebook – Follow us on Twitter

Reply From: Sandy

Kostas, you are the best! thank you so much.

Thanks,
Sandy

 

Tags: , , , , , ,

 

Knowledge Base support case for Likno Web Accordion Builder,  abstracted and stripped of all user’s private info.


Initial Email From:
Tom
Initial Email Subject: Question, Likno Web Accordion
Support Case Month: January 2013

Kostas,

Is there a way to style the Pane Header so that the indicator set images will appear on the LEFT instead of on the RIGHT?

Reply From: Likno Customer Support

Dear Tom,

Of course, just choose the appropriate positioning:

web accordion indicator positioning

Best Regards,
Kostas
Likno Customer Support
www.likno.com
Create any type of javascript menu (CSS menu, drop-down menu, sliding menu), button, html tree, modal window, tooltip, accordion, tab, scroller, jQuery slider or design for your websites!
Like us on Facebook – Follow us on Twitter

Reply From: Tom

Hi Kostas,

Thanks for the info.

Regards,
Tom

 

Tags: , , , , , ,

 

Knowledge Base support case for Likno Web Accordion Builder, abstracted and stripped of all user’s private info.


Initial Email From:
Bill
Initial Email Subject: font size in accordion builder
Support Case Month: November 2012

I am testing the trial version so there is no url at this point.

I'm trying to change the font size within all of the panes. Using the font-size property, i get no change in font size if I specify a font size of small or medium or whether I use 10px or 12px. The changes do show up in the preview screen in the tool but there is no effect in the browser. I am using Microsoft Web Expression as my primary web tool if that makes a difference.

Any help with this would be appreciated.

I'm a long time user of your allwebmenus product and look forward to working with this as well.

Regards, 
Bill

Reply From: Likno Customer Support

Dear Bill,

This happens because you are using a table, which by default resets the font size when you do not have a valid DOCTYPE for your page.

Can you please try changing this:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<HTML>

With this:

<!DOCTYPE html>

<HTML>

The above is the standard DOCTYPE for HTML5. If for some reason you want to use the old HTML4 Transitional DOCTYPE, then use this instead:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

Best Regards,
Kostas
Likno Customer Support
www.likno.com
Create any type of javascript menu (CSS menu, drop-down menu, sliding menu), button, html tree, modal window, tooltip, accordion, tab, scroller, jQuery slider or design for your websites!
Like us on Facebook – Follow us on Twitter

Reply From: Bill

Well almost...
I'm not much at html coding so maybe you can see what's going on.
When I sub the changes (tried both) it gives me the results that you'll see at http://ocdirect.com/staging/faq_test1.html (no menu item for this one.)
If you compare it to the normal linked faqs page you can see that the page 'breaks'
I can't seem to find where the problem is coming from.
If you have any ideas on how I can get the page back to normal, I'd appreciate it.

Regards,
Bill

Reply From: Likno Customer Support

Dear Bill,

I found a couple of changes that will fix the problem. The whole brake is related to the last table row, so you will need to fix it there.

Please try changing this:

<tr>

                <td height="32" width="165"><img height="32" border="0" width="165" src="images/main_5.jpg"></td>

                <td height="32" background="images/main_6.jpg" width="558">

                <p align="center"><font size="1" face="Arial" color="#F7DA8A">Copyright &copy;

                2010-2012 Woodbine Hill Kennel</font></p></td>

                <td height="32" width="224"><img height="32" border="0" width="224" src="images/main_7.jpg"></td>

</tr>

Into this:

<tr>

                <td height="32" width="165"><img style="display: block;" height="32" border="0" width="165" src="images/main_5.jpg"></td>

                <td height="32" background="images/main_6.jpg" width="558">

                <p align="center" style="margin: 0px;"><font size="1" face="Arial" color="#F7DA8A">Copyright &copy;

                2010-2012 Woodbine Hill Kennel</font></p></td>

                <td height="32" width="224"><img style="display: block;" height="32" border="0" width="224" src="images/main_7.jpg"></td>

</tr>

Note that there is also a big difference between having a valid DOCTYPE or not, especially in IE:

If you have DOCTYPE, then the “width” and “height" you set in the CSS do *not* include the padding. If you have an invalid DOCTYPE (or none at all) then the padding is most likely included in the width/height.

This is in case you see other sizing issues elsewhere.

Best Regards,
Kostas
Likno Customer Support
www.likno.com
Create any type of javascript menu (CSS menu, drop-down menu, sliding menu), button, html tree, modal window, tooltip, accordion, tab, scroller, jQuery slider or design for your websites!
Like us on Facebook – Follow us on Twitter

Reply From: Bill

Kostas,

Thanks so much for your help with this. You pinpointed the problem perfectly. I've changed to the new code that you've been suggesting and everything works just great.
Thanks for hanging in there with me.

Regards,
Bill

 

Tags: , , , , , , , , , , , ,

 

Knowledge Base support case for Likno Web Accordion Builder,  abstracted and stripped of all user’s private info.


Initial Email From:
Sandy
Initial Email Subject: WordPress Plug-in
Support Case Month: January 2013

Hi,

I have several of your products and have used them for years.   I had a very nice Web  Accordion installed on the front page of a customer’s site for the past 6 months.  Towards the end of December, his entire WordPress site suddenly failed.  I was able to recover it only be deleting the WordPress Plugin for the Web Accordion.  I just now, went back through the process of re-installing the WordPress plugin so I could attempt to set up the accordion again, but as soon as I installed it, WordPress crashed again.

Warning: Missing argument 2 for wpdb::prepare(), called in /home/mslater/public_html/wp-content/plugins/webaccordionbuilder-wordpress-plugin/webaccordionbuilder-wordpress.php on line 64 and defined in /home/mslater/public_html/wp-includes/wp-db.php on line 990
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/mslater/public_html/wp-includes/wp-db.php:990) in /home/mslater/public_html/wp-content/plugins/webaccordionbuilder-wordpress-plugin/webaccordionbuilder-wordpress.php on line 95

We are using current version WordPress 3.5

Please advise.

Thanks,

Sandy

Reply From: Likno Customer Support

Dear Sandy,

Thank you for letting us know about this! It seems that WordPress has changed some rules in v3.5 and this caused our plugin to stop working.

We have now uploaded a new version that should be fully compatible with WordPress 3.5. Please try this and let us know:

http://www.likno.com/jquery-accordion/wordpress-accordion.html

Best Regards,
Kostas
Likno Customer Support
www.likno.com
Create any type of javascript menu (CSS menu, drop-down menu, sliding menu), button, html tree, modal window, tooltip, accordion, tab, scroller, jQuery slider or design for your websites!
Like us on Facebook – Follow us on Twitter

Reply From: Sandy

THANK YOU for providing a fix...and so quickly!!!   The new plug-in is installed and everything is working.

I appreciate your quick response, and all your wonderful programs.

Thank you,
Sandy

 

Tags: , , , , , ,

 


© 2009-2012 Likno Blog – Drop-Down Menus, Javascript Menus, CSS Menus, jQuery Scrollers/Sliders, Modal Windows