We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 6726
    • 7,075 Posts
    Cool just downloaded and will try to give it a look today smiley

    Maybe we’ll see what goes wrong with IE6 too, who knows...
      .: COO - Commerce Guys - Community Driven Innovation :.


      MODx est l'outil id
      • 5811
      • 1,717 Posts
      The IE6 issue comes from the use of the adjacent selector type "a > b" that I am obliged to use in the css file of maxigallery:
      ul.thumbs > li {
      	list-style:none;
      	float:left;
      	display:block;
      	list-style-image: none;
      	margin:auto 15px;
      	height:250px;
      	width:160px;
      	text-align:center;
      }
      If you erase the ">" symbol, a conflict occurs between li from maxigallery css file and anythingrating css file.
      But unfortunately IE6 don’t respect the syntax "a > b" >:(

      And I am not enougth confortable with css to solve easily this kind of css conflicts. Any help about a solution is welcome.

      Find enclosed the maxigallery css file modified wihich runs on the demo site
        • 5811
        • 1,717 Posts
        Wiki documentation available at http://wiki.modxcms.com/index.php/AnythingRating.
        The repository url to download the snippet and the support forum address are still missing. I will publish the version 1.0 as soon as I have resolved the IE6 css issue.
          • 7231
          • 4,205 Posts
          Hey, this looks great. Very cool demos, and a great job with the documentation. I can think of many uses for this and can’t wait to try it out. Thanks grin
            [font=Verdana]Shane Sponagle | [wiki] Snippet Call Anatomy | MODx Developer Blog | [nettuts] Working With a Content Management Framework: MODx

            Something is happening here, but you don't know what it is.
            Do you, Mr. Jones? - [bob dylan]
            • 6726
            • 7,075 Posts
            Great work !

            About the CSS, I’ll give that a look today and get back to you !
              .: COO - Commerce Guys - Community Driven Innovation :.


              MODx est l'outil id
              • 5811
              • 1,717 Posts
              Find enclosed a new update of AnythingRating, as I found a wrong initialization of the canVote parameter (delivery issue).
              I have also improved the multiVote option.

              Thanks to try this last update.

              [EDIT: Thanks to dowload the last update. See here]
                • 20289
                • 958 Posts
                Thanks!, Here is the Persian language file :-]
                  [img]http://i10.tinypic.com/52c4eir.gif[/img][/td]
                  [td][Wiki] [Persian support forum]
                  [SVN] [RTL SVN Branch] [bugs] [FishEye+Crucible] [Learn MODx!] | [My Google Code]
                  [font=tahoma][برای دسترسی به راهنمای فارسی به [url=http://www.modxcms.ir]
                  • 5811
                  • 1,717 Posts
                  Thanks MotSmart for this new language file.

                  Other translation of the language file are welcome. file of 25lines with 19 labels.
                  Start from the enclosed english-utf8 reference file. Thanks.

                  Current language files available :

                  -english-utf8
                  -francais-utf8
                  -persian-utf8
                    • 7923
                    • 4,213 Posts
                    Very nice snippet, good gob!


                      "He can have a lollipop any time he wants to. That's what it means to be a programmer."
                      • 5811
                      • 1,717 Posts
                      Since few days, i try to adapt the Maxigallery and the AnythingRating css files for IE6. Without correct results !!! AnythingRating snippet runs well with IE7, FF, Safari and Opera but not with IE6 !

                      The reasons come from a css conflict between the <ul> list of Maxigallery and AnythingRating. To simulate the adjacent selector ">" (which don’t exist with IE6 >:( ) and limit the range of the "ul.thumbs li" selectors inside the maxigallery css file, i have added in the maxigallery file:
                      ul.thumbs li ul li{
                        position:absolute;
                        width:125px;
                        display:inline;
                        margin:0 auto;
                      }
                      Now with this hack, IE6 is nearly correct EXCEPT that the hover on stars is completely wrong.

                      As I am not enought skilled in css to solve myself this kind of issue, I greatly appreciate if somebody could help me to solve this annoying issue, before to deliver this snippet in the repository.

                      All the files and explanations to set up a local test (a maxigallery) could be downloaded from http://www.modx.wangba.fr/howto-maxigallery.html.
                      A demo is available at http://www.modx.wangba.fr/travel.html and find enclosed the complete snippet package with the maxigallery css file updated