J1.5

Difference between revisions of "Customising the JA Purity template/customisations/Changing the position of your logo"

From Joomla! Documentation

< J1.5:Customising the JA Purity template‎ | customisations
m
(No difference)

Revision as of 03:03, 6 June 2009

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Logo image[edit]

  1. open with a text editor the file templates\ja_purity\css\template.css about at line 957 you will find:
    h1.logo a {
    width: 208px;
    display: block;
    background: url(../images/logo.png) no-repeat;
    height: 80px;
    position: absolute; <---- EDIT THIS
    top: 10px; <---- ADD THIS
    left: 10px; <---- ADD THIS
    z-index: 100;
    }
  2. now in the added line you have to enter the number of pixel that is better for your logo.
  3. finished


Logo text[edit]

  1. open with a text editor the file templates\ja_purity\css\template.css about at line 972 you will find:
    h1.logo-text a {
    color: #CCCCCC !important;
    text-decoration: none;
    outline: none;
    position: absolute;
    bottom: 40px; <---- EDIT THIS
    left: 5px; <---- EDIT THIS
    }
    p.site-slogan {
    margin: 0;
    padding: 0;
    padding: 2px 5px;
    color: #FFFFFF;
    background: #444444;
    font-size: 92%;
    position: absolute;
    bottom: 20px; <---- EDIT THIS
    left: 0; <---- EDIT THIS
    }
  2. now in these lines you have to enter the number of pixel that is better for you.
  3. finished