Attention!

These forums are not monitored. We provide the discussions forum as a place for users of free extensions to help each other and find answers, not as a place for our staff to deal with urgent support issues. Our staff very rarely responds to forum posts. Occasionally we will respond to forum posts but responses are not guaranteed.

If you have an active subscription for a commercial extension and wish to receive support please login to your Artetics.com account and submit a ticket. The ticketing system is the best way for you to get assistance in a timely manner.

Thank you!

  Sunday, 19 January 2014
  4 Replies
  2.5K Visits
0
Votes
Undo
Hello,

is it possible to change the width of the ipod style menu via css?

Thanks
Andreas
more than a month ago
·
#23289
0
Votes
Undo
Hello,

Sure. Do you need to change the width of button or the width of menu items container?

Regards,
artetics.com team

If your question has been answered, please choose "Accept as Answer" on the correct post and/or mark your question as Resolved.

more than a month ago
·
#23290
0
Votes
Undo
thx vor the quick reply
I want to change the width of menu items container
more than a month ago
·
#23291
0
Votes
Undo
In file modules\\mod_arttotalmenu\\mod_arttotalmenu.php please replace:

\"width\" => 180

with the width you need.

We will put this as module setting in the next update.

Regards,
artetics.com team

If your question has been answered, please choose "Accept as Answer" on the correct post and/or mark your question as Resolved.

more than a month ago
·
#23292
0
Votes
Undo
Yes thx
If someone is interested with this you can change the width and max Height in your backend

In your mod_arttotalmenu.php add after

$loadJQuery = $params->get(\'loadJQuery\', true);

this

//Container Width and Height
$container_width = $params->get(\'container-width\');
if(is_numeric($params->get(\'container-width\'))) {
$container_width = $params->get(\'container-width\');
}else{
$container_width = 180;
}
if(is_numeric($params->get(\'container-height\'))) {
$container_height = $params->get(\'container-height\');
}else{
$container_height = 180;
}


and change \"width\" => 180, \"maxHeight\" => 180,

to

\"width\" => $container_width,\"maxHeight\" => $container_height,


In your mod_arttotalmenu.xml add after

<field name=\"loadJQuery\" type=\"list\" default=\"1\" label=\"Load jQuery library\" description=\"Load jQuery javascript library? Choose no if it is always included in your pages\">
<option value=\"1\">yes</option>
<option value=\"0\">no</option>
</field>

this

<field name=\"container-width\" type=\"text\" default=\"180\" label=\"Width\" description=\"Width Menü\" />
<field name=\"container-height\" type=\"text\" default=\"180\" label=\"Height\" description=\"Max Height Menü\" />
  • Page :
  • 1
There are no replies made for this post yet.
Be one of the first to reply to this post!