customize color

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mohammedsiddig
    New Member
    • Jan 2008
    • 13

    customize color

    hello web developer .
    how i can customize background color and font color using html or css ,
    this customization must to be from my page .
  • angkana
    New Member
    • Feb 2008
    • 15

    #2
    Originally posted by mohammedsiddig
    hello web developer .
    how i can customize background color and font color using html or css ,
    this customization must to be from my page .
    Background Color properties is
    background-color : #eeeeee;

    Background Image properties is
    background-image: url('images');
    background-repeat: values [values have repeat,repeat-x,repeat-y,no-repeat];
    background-attachment : values [values have fixed,scroll];
    background-position: top center;

    Example background image
    background-image:url(http://www.agoda.com/img/aaaa.gif);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top center

    Font Color
    color:#000000;

    Best regards,
    Angkana Jivaphaiboolsak

    Comment

    • just a feeling
      New Member
      • Aug 2007
      • 86

      #3
      Nice going, Angkana.
      Here are some examples that might help u ( from W3C schools ).

      Css Color Example.
      [HTML]<html>

      <head>
      <style type="text/css">
      h1 {color: #00ff00}
      h2 {color: #dda0dd}
      p {color: rgb(0,0,255)}
      </style>
      </head>

      <body>
      <h1>This is header 1</h1>
      <h2>This is header 2</h2>
      <p>This is a paragraph</p>
      </body>

      </html>[/HTML]
      Css Background Color Example.
      [HTML]
      <html>
      <head>
      <style type="text/css">
      span.highlight
      {
      background-color:yellow
      }
      </style>
      </head>

      <body>
      <p>
      <span class="highligh t">This is a text.</span> This is a text. This is a text. This is a text. This is a text. This is a text. This is a text. This is a text. This is a text. <span class="highligh t">This is a text.</span>
      </p>
      </body>
      </html>[/HTML]

      Hope it Helps.

      Comment

      • angkana
        New Member
        • Feb 2008
        • 15

        #4
        Excellent,just a feeling

        Good example ^-^

        Comment

        • mohammedsiddig
          New Member
          • Jan 2008
          • 13

          #5
          Originally posted by just a feeling
          Nice going, Angkana.
          Here are some examples that might help u ( from W3C schools ).

          Css Color Example.
          [HTML]<html>

          <head>
          <style type="text/css">
          h1 {color: #00ff00}
          h2 {color: #dda0dd}
          p {color: rgb(0,0,255)}
          </style>
          </head>

          <body>
          <h1>This is header 1</h1>
          <h2>This is header 2</h2>
          <p>This is a paragraph</p>
          </body>

          </html>[/HTML]
          Css Background Color Example.
          [HTML]
          <html>
          <head>
          <style type="text/css">
          span.highlight
          {
          background-color:yellow
          }
          </style>
          </head>

          <body>
          <p>
          <span class="highligh t">This is a text.</span> This is a text. This is a text. This is a text. This is a text. This is a text. This is a text. This is a text. This is a text. <span class="highligh t">This is a text.</span>
          </p>
          </body>
          </html>[/HTML]

          Hope it Helps.
          thanx [QUOTE=just a feeling] for reply but , but i maen how i can enable users to customize the page preferences(fon t colors,size .....etc) using special control panel .

          Comment

          • harshmaul
            Recognized Expert Contributor
            • Jul 2007
            • 490

            #6
            Either using javascript on the client side, or PHP to store the customisations on the server side. but not derectly with html.

            Comment

            • mohammedsiddig
              New Member
              • Jan 2008
              • 13

              #7
              Originally posted by harshmaul
              Either using javascript on the client side, or PHP to store the customisations on the server side. but not derectly with html.

              thaaaaaaaaaaaaa aaaaaaaaaanx

              Comment

              • harshmaul
                Recognized Expert Contributor
                • Jul 2007
                • 490

                #8
                Originally posted by mohammedsiddig
                thaaaaaaaaaaaaa aaaaaaaaaanx
                your weeeeeeeeeeeeee eeeeeeeeeeeeeel come

                Comment

                Working...