Announcement

Collapse
No announcement yet.

Actinic V10 CSS Issues

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Actinic V10 CSS Issues

    Hi,

    Just incase nobody has spotted them already. There are one or two coding bugs in Actinic's own CSS.

    When using the Clean CSS Layout theme the following CSS bug was spotted:

    Code:
    div.CheckoutCartSection {
    	margin-top; 0px;
    	margin-bottom: 10px;
    }
    Should be:

    Code:
    div.CheckoutCartSection {
    	margin-top: 0px;
    	margin-bottom: 10px;
    }

    #2
    Thats not an easy one to spot - nice job

    Comment


      #3
      Thanks for reporting, this will be fixed in the second v10 maintenance release. It wasn't quite in time for the first.
      Bruce Townsend
      Ecommerce Product Manager
      Sellerdeck Ecommerce Solutions

      Comment


        #4
        No problem. I've got my eagle eye CSS hat on I've only started developing in Actinic V10 over a week ago, so missed the opportunity to play with the BETA release.

        I did spot this one also:

        Code:
        .checkout-field-input {
        	width: *;
        }
        But wasn't sure if it was some weird CSS hack? Which I doubt as it appears to do nothing.

        Comment


          #5
          Sorry and this one:

          Code:
          #bobcat-navigation-bar ul {
          	margin: 0 5px;
          	padding: 0;
          	list-style: 0;
          }
          List-Style can't have a value of 0. Should be:

          Code:
          list-style: none;

          Comment


            #6
            Same list-style bug appears here too:

            Code:
            #minimal-navigation-bar ul {
            	margin: 0;
            	padding: 0;
            	list-style: 0;
            }

            Comment


              #7
              Stoooooop! We surrender.....!
              :-P
              Bruce Townsend
              Ecommerce Product Manager
              Sellerdeck Ecommerce Solutions

              Comment


                #8
                Any chance of delaying the release of 10.0.1 for a further 10 mins so these very simple fixes can be included please?

                Comment


                  #9
                  That's all folks!

                  I didn't find anymore. And only spotted them as I have my first Actinic 10 site near ready to go live, and was playing around with the Shopping cart CSS

                  Comment


                    #10
                    It would be a good idea for Actinic to have a css "expert" go over and validate all css, just to be sure - its basic stuff

                    Comment


                      #11
                      Originally posted by brucet View Post
                      Stoooooop! We surrender.....!
                      :-P
                      LMFAO thanks Bruce

                      Comment


                        #12
                        Every code change, css included, is normally checked before a release. The problem is not usually the knowledge, but there is an awful lot of code, it's a tedious and thankless task requiring loads of concentration, and lapses sometimes happen. :-(

                        Something obviously went particularly awry with the css for the new checkout, though. So having an independent pair of eyes looking through one discreet element like the css has been - patently - very helpful. Thanks Garry.

                        If it was simply matter of changing the code, we could fix this in v10.0.1. But we also have to review the changes, modify the upgrader, rebuild the executables, and then test everything. It would delay the release for an awful lot more than 10 minutes, I'm afraid...
                        Bruce Townsend
                        Ecommerce Product Manager
                        Sellerdeck Ecommerce Solutions

                        Comment


                          #13
                          Originally posted by brucet View Post
                          If it was simply matter of changing the code, we could fix this in v10.0.1. But we also have to review the changes, modify the upgrader, rebuild the executables, and then test everything. It would delay the release for an awful lot more than 10 minutes, I'm afraid...
                          I'm so amazed at this, I can't bring myself to say anything apart from
                          Kind Regards
                          Sean Williams

                          Calamander Ltd

                          Comment


                            #14
                            Originally posted by brucet View Post
                            If it was simply matter of changing the code, we could fix this in v10.0.1. But we also have to review the changes, modify the upgrader, rebuild the executables, and then test everything. It would delay the release for an awful lot more than 10 minutes, I'm afraid...
                            Could you post a corrected css file in the download area

                            Malcolm

                            SellerDeck Accredited Partner,
                            SellerDeck 2016 Extensions, and
                            Custom Packages

                            Comment

                            Working...
                            X