Text Removal

Permalink 1 user found helpful
Hi

in the header of this site (http://s465501189.websitehome.co.uk/SGD/) there is the site name in text, i am trying to rmove it and maybe replace it with an image however i cannot find it in the header script.

could somebody tell me where this is located and how to deal with it?

thanks

 
JohntheFish replied on at Permalink Reply
JohntheFish
How this works depends on your theme, so for the best knowledge on this, you need to ask your theme developer.

However, there are a few common techniques used across most themes, so here is a list:

- Look in the page edit for a global area called 'site name' or 'site logo'

- Look in the page edit for a page attribute called 'site name' or 'site logo'

- Look in the dashboard for a stack called 'site name' or 'site logo'

- Use the dashboard search to look for a 'logo' dashboard page.

As I said at the top, if none of the above provide the right clue, you need to ask your theme developer.
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Navigate to /SGD/packages/grain/themes/grain/elements/header.php

Note: I assume the header.php file exists in elements folder, not sure whether the same folder is there. But find the header.php and go to the code like
<?php  echo SITE?>

And replace it with your image. Also you can put an editable global area so that you can add the image on fly.
<?php  
        $a = new GlobalArea('Logo');
   $a->display();
  ?>


Rony
makemywebpage replied on at Permalink Reply
Thanks for the help so far,

the header text is as follows:

<section id="titlebar">
        <div class="container">
            <div id="logo">
            </div><!-- #logo -->
            <nav>
                <?php  
            $bt_main = BlockType::getByHandle('autonav');
            $bt_main->controller->displayPages = 'top';
            $bt_main->controller->orderBy = 'display_asc';                    
            $bt_main->controller->displaySubPages = 'all';
            $bt_main->controller->displaySubPageLevels = 'custom';      
            $bt_main->controller->displaySubPageLevelsNum = '1'; 
            $bt_main->render('templates/dropdown');
            ?>
            </nav>
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Does this theme has any inbuilt blocks called simple-logo-block?
Please check the theme package and check whether it has any blocks.

Rony
makemywebpage replied on at Permalink Reply
Yes theres a simple logo folder in the blocks directory
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
Could you post the code that is there in the block directory.

Rony