Announcement

Collapse
No announcement yet.

Smart theme logo, help for simpleton!

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

    Smart theme logo, help for simpleton!

    I am trying to figure out how to use Actinic, the main thing i want to do is change the logo header at the top but it seems when I do it, it leaves me with a large black stripe next to my logo. If i change the colour of the stripe to white it also change the colour of all the boxes on the site to white.

    Do i need to do some editing somewhere

    Please help!

    site is www.beanbagsandrefill.com

    #2
    If you open the 3 main primary templates Act_primary.html, Act_BrochurePrimary.html and Act_PrimaryCheckout.html in the root of the site folder you will see a table right at the top of the code after the <body> tag - remove any NETQUOTEVAR that is setting the backgound colours and set to #ffffff for white


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      This is at the top of the header can you point to the exact bit I need to change......PLEASE

      <!-- Primary HTML begin -->
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
      <HTML>
      <HEAD>
      <TITLE>NETQUOTEVAR:PAGETITLE</TITLE>
      <Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>
      <META NAME="ACTINICTITLE" CONTENT="NETQUOTEVAR:PAGEHEADER">
      <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
      <!--@act NETQUOTEVAR:HEADERMETA -->
      <!--@act NETQUOTEVAR:LOADFUNCTION -->
      <!--@act NETQUOTEVAR:SUBMITFUNCTION -->
      <!--@act NETQUOTEVAR:P3PFULLPOLICYLINK -->
      <LINK REL=STYLESHEET HREF="actinic.css">
      <SCRIPT LANGUAGE="JavaScript" SRC="actiniccore.js" TYPE="text/javascript"></SCRIPT>
      <SCRIPT LANGUAGE="JavaScript" SRC="actinicextras.js" TYPE="text/javascript"></SCRIPT>

      <!--@act NETQUOTEVAR:SECTIONTREE_RAW -->

      Comment


        #4
        <BODY TEXT="NETQUOTEVAR:FGCOLOR" topmargin="0" marginwidth="5" marginheight="0" OnLoad="NETQUOTEVAR:ONLOAD" NETQUOTEVAR:BGIMAGE NETQUOTEVAR:BGCOLOR NETQUOTEVAR:LINKCOLOR NETQUOTEVAR:VLINKCOLOR NETQUOTEVAR:ALINKCOLOR>
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td align="left" bgcolor="NETQUOTEVAR:PALCOLOR2CSS">
        NETQUOTEVAR:LOGOIMAGE
        </td>
        </tr>
        </table>

        could it be this bit?

        Comment


          #5
          the code you need to change will be located within the <BODY> </BODY>tags

          Comment


            #6
            Originally posted by polybeads
            <td align="left" bgcolor="NETQUOTEVAR:PALCOLOR2CSS">
            NETQUOTEVAR:LOGOIMAGE

            could it be this bit?
            change to bgcolor="#ffffff"


            Bikster
            SellerDeck Designs and Responsive Themes

            Comment


              #7
              You would be best removing the bgcolor and using a CSS class this would allow you to change the colour without having to upload every page on the internet and is more W3C compliant

              Code:
              <td align="left" class="myBACKGROUND">
              in the actinic.css add

              Code:
              .myBACKGROUND {
              bakground-color: #ffffff;
              }


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment


                #8
                Thanks for everyones help it seems to be working ok now

                Comment


                  #9
                  Great - see you went with the bgcolor option


                  Bikster
                  SellerDeck Designs and Responsive Themes

                  Comment


                    #10
                    Yes I did, and seems to work so that was good enough for me

                    Comment

                    Working...
                    X