Announcement

Collapse
No announcement yet.

Change to actinic.css not propagating through

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

    #16
    Thanks ever so Jont - can you tell me in what directory the actinic.css file lives - I had thought that it was in sitehtml but created a virgin site myself to have a play with and couldn't find it in there - just in the PreviewHtml & Designpreviewhtml

    Ta muchly

    K
    Kathy Newman

    Comment


      #17
      Select it from the drop down list in design view is the best place, doesn't matter where it is then, that links to the master file and that is what you should be working on.

      Comment


        #18
        As Lee says the actinic.css is only available from inside Actinic - this is one of the biggest gripes with Actinic from a CSS point of view - and the reason why I always link to an external CSS and do away with the inbuilt one.


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #19
          Thank You Thank You Thank You. Problem had been I was editing it in DW completely forgetting you could do it in Design View - took 2 seconds and it was done!.

          It now works - though think it's going to take a long time for my lovely long hair to grow back

          Kathy
          Kathy Newman

          Comment


            #20
            Ok I know I'm going to be pushing my luck but ............

            now that I've got it changed from a square - to a disc - can I change the colour of the disc? Tried putting in colour command but that doesn't work....

            Think I need to go buy a CSS book!

            Kathy
            Kathy Newman

            Comment


              #21
              Yep - just change the color at the bottom of the same snippet eg:

              ul.products {
              line-height: normal;
              padding: 0px 0px 0px 1px;
              margin: 3px 0px 4px 15px;
              font-size: 11px;
              list-style: disc;
              color: green;
              }

              that'll change the colour of the disc only


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment


                #22
                Originally posted by kathynewman
                Tried putting in colour command but that doesn't work
                Don't forget the internet is American ... need to use "color" not colour


                Bikster
                SellerDeck Designs and Responsive Themes

                Comment


                  #23
                  Thanks Jont - tried that but doesn't appear to be working - tried:
                  ul {
                  list-style-type: disc;
                  color: green;
                  }
                  and
                  ul {
                  list-style-type: disc;
                  color: #5DAE25;
                  }

                  and neither work - but at least I can change the disc to square or circle or whatever i want now though!

                  Enough for today I think.

                  Kathy
                  Kathy Newman

                  Comment


                    #24
                    Looks like you are changing the wrong part again. Jont's post shows the other styles included in the class, are you adding the new color to this class or creating a new class?

                    Comment


                      #25
                      Thanks Lee I was editing it in the wrong place - confused by the fact that I could change the style type there from circle to square and it worked!

                      If you or Jont have any pets let me know be happy to send them something as a thank you - you don't know how much your help today has been appreciated.

                      Off to buy a new CSS book I think now.

                      Kathy
                      Kathy Newman

                      Comment


                        #26
                        Four cats and a terrapin here, Jont just has goats lol.

                        Do the online video tutorials Kathy, they are fantastic, watch in real time as they create styles and see what they do. A fantastic way of learning, would recommend them to everyone.

                        Comment


                          #27
                          The "C" in CSS is "cascade" ... which refers to the way code is inherited and takes precedence due to specificity (importance) and the closer to the finished object that is presented to the screen.

                          In the case of the <ul> changing this code will affect all instances of that tag. In the case of the left navigation there is a class in there ... this affects the cascade (it is closer to the text being displayed) so overrides any setting declared in the master <ul> eg:

                          ul {
                          font-size: 12px;
                          color: red;
                          }

                          ul.products {
                          color: green;
                          }

                          the class .products will use the green colour but still use the same font size.

                          Clear as mud hey?


                          Bikster
                          SellerDeck Designs and Responsive Themes

                          Comment

                          Working...
                          X