Elxis CMS Forum

Support => General => Topic started by: xmanhattan on May 12, 2016, 13:08:34

Title: Greek menus
Post by: xmanhattan on May 12, 2016, 13:08:34
Hello all,

I have entered Greek menu titles under the English menus after entering the Greek content under the English pages and although I can see the titles from the sitemap, the Greek menu titles do not display.
What I am doing wrong?

http://www.tazedakislaw.com/ (http://www.tazedakislaw.com/)

Second question:
I have formatted some list bullets using html and entering them through HTML into the pages.
I can see them through FF but not through IE or Chrome. 
I used the code below.
Code: [Select]
<li style="margin: 0em .5em 0em .5em; list-style-type: square;">
Is this a browser problem?

Title: Re: Greek menus
Post by: xmanhattan on May 12, 2016, 16:06:48
I solved the problem with the Greek menu.  I had to add Greek text into the main menu the same way that I did for the top menu.

As for the list bullets, should I simply use a bullet image and add the necessary css?

Title: Re: Greek menus
Post by: datahell on May 12, 2016, 21:01:22
Avoid writing inline css, it is not good. Use a css class instead. You can use the standard "elx_stdul" class or create your own in your template's css file.

<ul class="elx_stdul">
    <li>Text</li>
    <li>Text</li>
    <li>Text</li>
    <li>Text</li>
    <li>Text</li>
</ul>

Live example of class elx_stdul the Elxis 4.4 changelog (https://www.elxis.org/releases/elxis44.html)
Title: Re: Greek menus
Post by: xmanhattan on May 13, 2016, 09:05:09
Hello Datahell,

Is that class built into to flex or Elxis 4 and is there a way of selecting the list style?

Thank you.
Title: Re: Greek menus
Post by: webgift on May 13, 2016, 16:56:46
elx_stdul is a standard css rule used in Elxis CMS 4.x. Of course each template's
designer can modify it!
In your case: Check the file standard.css under the directory: /templates/system/css/
and template.css under : /templates/flex/css/ one.
Finally check below the link
[1] for standard CSS rules that we use in Elxis CMS 4.x

[1]: https://www.elxis.net/docs/developers/tutorials/templates-guide.html#ttypography (https://www.elxis.net/docs/developers/tutorials/templates-guide.html#ttypography)
Title: Re: Greek menus
Post by: xmanhattan on May 13, 2016, 18:50:33
Thank you webgift!