Announcement

Collapse
No announcement yet.

Text Changes.......

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

    Text Changes.......

    Hi,

    I wonder if anybody could help me please?

    I am wanting to know how i can make text in my product description be for example, Bold or maybe a differant colour i.e. Red.

    Many Thanks In Advance.

    #2
    You may include html formatting in the full description - like thisfor example:
    !!<
    <strong>Bold Text</strong>
    >!!

    Just encapsulate any html inside !!< and >!!

    Comment


      #3
      Duncan,

      This may sound really silly but from you reply above does that mean that you can type in HTML code into the description of a Fragment etc. I tried what you suggested and it worked great

      For example all of my site is in a particular font but on some pages i want to change that so how would I go about doing that?

      Is there a list of common things anywhere of should I just search through here and the advanced user manual

      Cheers
      Paul

      www.balloonandpartyshop.co.uk

      Comment


        #4
        Originally posted by drounding
        You may include html formatting in the full description - like thisfor example:
        !!<
        <strong>Bold Text</strong>
        >!!

        Just encapsulate any html inside !!< and >!!
        Thank You very much!!

        Superb..it's now looking right, i didnt realise you could enter the HTML directly into the description box like that you see, every time i tried before it just didnt work out...but now you explained how to do it correctly it works a treat.

        Thanks again.

        Paul.

        Comment


          #5
          Originally posted by Paul Phillips
          does that mean that you can type in HTML code into the description of a Fragment etc. I tried what you suggested and it worked great
          Yes you can type whatever HTML you like in the full description if you use those tags. It’s handy for embedding flash images and highlighting particular bits of text for example in red.

          For example all of my site is in a particular font but on some pages i want to change that so how would I go about doing that?
          Are you talking about changing the entire font style on that page or just certain chunks?

          Is there a list of common things anywhere of should I just search through here and the advanced user manual
          Search here or the knowledgebase or the AUG for extra tips, functionality and fixes.
          Regards,

          Toby Blanchard

          Comment


            #6
            Hi Toby,

            Thanks for the help

            It would just be all of the text in a particular fragment - say from ariel to comic sans

            Cheers
            Paul

            Comment


              #7
              Originally posted by Paul Phillips
              say from ariel to comic sans
              Please do not use comic sans. It has no place on the internet.

              You would be best duplicating the existing fragment layout and simply applying a new CSS class for the text in the new font ... then simply apply the new layout for all the fragments you need in the different font.


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment


                #8
                I wasnt planning to use Comic Sans - it was the only thing that sprang to mind when writing the reply.

                I have been searching through the pages here to try and find out how to do this. I have seen lots of posts (mostly from you!!!) about the CSS class thingy.

                I am really new to making my own changes to my site (I had it desigened by a pro) except the real basic things. Could I be a real pain and ask you to explain what you mean , step by step

                Thanks
                Paul

                Comment


                  #9
                  Originally posted by Paul Phillips
                  I wasnt planning to use Comic Sans - it was the only thing that sprang to mind when writing the reply.
                  Phew. Thats a relief to hear

                  To change the template... click on the existing fragment and click on "edit" next to the layout. This will open in your default editor (notepad, dreamweaver etc).. immediately "save as" with a new name eg Act_ComicSans.html.

                  In the template you will see "NETQUOTEVAR:BROCHURE_TEXT" you need to change this by wrapping in a new CSS class eg:

                  <div class="myComicText">NETQUOTEVAR:BROCHURE_TEXT</div>

                  In the actinic.css file in the root of the site1 folder add the following:

                  .myComicText {
                  font-family: "comic sans", arial, helvetica;
                  }

                  that will set the text to comic sans .. you can change the family accordingly .. always best to use a family so if the user does not have comic sans it then uses the next in the list.

                  If you want to override the size and colour you can add these to the class as well eg:

                  .myComicText {
                  font-family: "comic sans", arial, helvetica;
                  font-size: 20px;
                  color: #990000;
                  }


                  Save the template and to use go to your fragment and select the new template layout using the "browse" option. Save in the root of the site1 folder.

                  HTH


                  Bikster
                  SellerDeck Designs and Responsive Themes

                  Comment


                    #10
                    Thanks

                    Most of that makes sense but before I try it Ive got a couple of questions (sorry!!!)

                    Where do I find the actinic.css file?

                    Where abouts do I add
                    .myComicText {
                    font-family: "comic sans", arial, helvetica;
                    }

                    Really appreciate all the help

                    Paul

                    Comment


                      #11
                      Originally posted by Paul Phillips
                      ...Where do I find the actinic.css file?...
                      Paul
                      In your Site1 folder.

                      Comment


                        #12
                        Where abouts do I add
                        anywhere - but adding it onto a new line at the very end is probably cleanest and easiest.
                        Bill
                        www.egyptianwonders.co.uk
                        Text directoryWorldwide Actinic(TM) shops
                        BC Ness Solutions Support services, custom software
                        Registered Microsoft™ Partner (ISV)
                        VoIP UK: 0131 208 0605
                        Located: Alexandria, EGYPT

                        Comment


                          #13
                          This is what I have done but it doesnt seem to work can anyone see where im going wrong please?

                          I opened the existing fragment and saved it as Act_Arial.html

                          It looks like this after I did the wrapping

                          <!-- TextOnly HTML begin -->

                          <tr>
                          <td colspan="3" valign="top">

                          NETQUOTEVAR:FRAGMENTANCHOR
                          <table border="0" width="100%" cellspacing="5" cellpadding="1">
                          <tr>
                          <td width="100%"><div class="mytext">NETQUOTEVAR:BROCHURE_TEXT</div>/td>
                          </tr>
                          </table>

                          </td>
                          </tr>

                          <!-- TextOnly HTML end -->

                          I then added the following to Actinic.css right at the bottom

                          .mytext{
                          font-family: "Arial", Verdana, Helvetical
                          }

                          and saved it

                          I then have selected Act_arial as the fragment layout

                          When I upload it I get what you see on my homepage

                          www.balloonandpartyshop.co.uk
                          (its the first fragment - "Welcome to the UK's etc etc )

                          and when I look back into actinic.css the code i typed in has disappeared

                          Dont know what to do know

                          Is there a way to change the font by typing the html into the description box?

                          Thanks
                          Paul

                          Comment


                            #14
                            Your actinic.css file on your server does not contain the lies you added.
                            I also don't think you should have quotes around Arial - but I'm not a css fundi.

                            Comment


                              #15
                              You only have quotes around a font family member when the name of the font is made up of 2 or more words. Eg.

                              "Times New Roman", "Comic Sans"

                              if its just one word like Arial, then all you include is Arial.

                              Also not sure which css file you have added to (there should only be one), but it certainly isn't the correct one.

                              Comment

                              Working...
                              X