0
Welcome Guest! Login
0 items Join Now

use body tags only

  • use body tags only

    Posted 12 years 4 months ago
    • Henning's Avatar
    • Henning
    • Preeminent Rocketeer
    • Posts: 29362
    • Thanks: 954
    • Volunteer

    Re: use body tags only

    Posted 12 years 4 months ago
    • I really really suggest to look into basic concepts of the css syntax.

      First you have this in your custom css file

      body {
      body {background-image: url(../images/background.jpg) ;
      background-repeat: repeat-y;
      background-position: center top;!important;}

      That just can't work.

      It needs to be

      body {
      background-image: url(../images/background.jpg) ;
      background-repeat: repeat-y;
      background-position: center top;!important;}

      perhaps you also want add this to your custom css file but I'm not sure ...

      header#rt-top-surround,
      header#rt-top-surround::after {
      background: transparent;
      background-image: none;
      }

      Last thing ... you are messing up your code with wrong comments:
      <!--- NAVIGATION-> is wrong
      !-ASSOCIATION-> is wrong too

      IT NEEDS to be
      /* Add a comment here */

Time to create page: 0.060 seconds