Announcement

Collapse
No announcement yet.

Applying style to SectionName

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

    Applying style to SectionName

    Hello all

    I am trying my best to seize control of what is displayed by setting up my own custom stylesheet. Most things are working for me but I am pulling my hair out at this:

    <h1> <actinic:variable formatting="h1,font(Color|ff9900),bold" encoding="actinic" name="SectionName" /> </h1>

    I only see that when I copy and paste here - on the screen in Actinic I see:

    <h1> SectionName </h1>

    I simply want to turn off all this Actinic formatting so that only the CSS rule for <H1> applies but do not know how to. If I double click on SectionName then up comes an Edit Appearance dialog box - trouble is I can't blank out colour and everything and anything I do seems to yield unpredicatable results.....

    Thanks for any help

    Scott

    #2
    In design tab mode click on the >< icon (top left above the html) and it will expand the code to show all the Actinic variables

    Replace with

    <h1 class="sectionName">SectionName</h1>

    and set your .sectionName in the actinic.css accordingly


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      Thanks jont

      <h1> <actinic:variable name="SectionName"> </h1> is what I finished up with because I define the css for <h1> but I guess that is what you meant!

      I suddenly feel free.....

      Scott

      Comment

      Working...
      X