We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

How To Take Out “Site Title” and “Tagline’ in “Aerial” 1.7 | Forum

Topic location: Forum home » Development » Themes
Wilson
Wilson Jul 23 '14

I’m trying to take the “Site Title” and “Tagline’ in “Aerial” 1.7 out, I’m replacing it with a custom image but can’t find how to take it completely out so it dose not over lay on my jpg image. Any help on this would be greatly appreciated.


I have attached an image showing what I would like gone.


Wilson

The Forum post is edited by Wilson Jul 23 '14
Attachments:
  title-change.jpg (129.84Kb)
Alia Team
Alia Jul 28 '14
Via CSS:

 .ow_logo a {
    display:none;
}

.ow_tagline {
   display:none;
}


Via HTML:

master_pages/dndindex.html and general.html .

Remove:

<div class="ow_logo">
                <h2><a href="{$siteUrl}">{$siteName}</a></h2>
                <div class="ow_tagline">{$siteTagline}</div>

            </div>
Alia Team
Alia Jul 28 '14
Topic was moved from Custom Code Modifications.