Announcement

Collapse
No announcement yet.

Logo image in Contemporary design theme

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

    Logo image in Contemporary design theme

    I'm having trouble with inserting my logo into Contemporary design theme in V8.5.3. I found a thread in Actinic Community which seemed easy enough to follow (so I did) but it hasn't worked.

    I've changed the CSS in my Actinic StyleSheet via the Design Tab (yes, in the Layout Code before anyone asks) to the following:

    .page_header_content {
    width: 762px;
    text-align: left;
    height: <actinic:variable name="BrochureLogoHeight" />;
    }

    The previous thread that I found on this subject was this:

    http://community.actinic.com/showthread.php?t=26510

    (It's a couple of years old but should still be relevant, yes?)

    #2
    What is the size of your logo?

    Comment


      #3
      It's pretty big at 753 x 201px

      I've got it on an existing site using Smart - www.blackironmongery.co.uk

      Comment


        #4
        Use

        height: <actinic:variable name="BrochureLogoHeight" />px;
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          or

          height: 201px;

          Comment


            #6
            Can you add it where you having difficulty and show us that? Showing us the logo on another site isn't really doing anything apart from showing us how it looks, which has no impact on its function. If you put it where you want and show us its not working, we will be in a better position to help.

            Why are you using a variable in the CSS to set the height? just add the height yourself, this may be the issue, i've not seen the variable used like that before.

            Comment


              #7
              You can see the problem here

              http://www.conquestai.co.uk/images/Untitled%20-%202.jpg

              I tried this first

              height: 201px

              then this:

              height: <actinic:variable name="BrochureLogoHeight" />px; (with & without the px)

              and also this:

              height: <actinic:variable name="CompanyLogoHeight" />px (ditto)

              but neither makes any difference.

              I only used the variables in the CSS as another option suggested in the previous thread referred to in my first post - it seemed to work for that person!

              Comment


                #8
                Do:

                height: 201px;

                We need a live link to view the code, not a picture, we can then debug the html in real time. Failing that, get yoruself firefox and firebug (both free) and debug it yourself.

                Comment

                Working...
                X