Title: Fixed Blix Theme Header Clickable
Last modified: August 20, 2016

---

# Fixed Blix Theme Header Clickable

 *  [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/)
 * Can anyone help make the fixed blix header be a clickable link?
 * my site: [http://www.bequjucie.com/blog](http://www.bequjucie.com/blog)

Viewing 12 replies - 1 through 12 (of 12 total)

 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2410860)
 * i’m sorry.
 * browser’s msg:
    Server not found
 *  Thread Starter [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2410865)
 * sorry. Here is the link:
 * [http://www.bequjuice.com/blog](http://www.bequjuice.com/blog)
 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2410872)
 * open `layout.css`
 * clean/delete `#header h1{}`‘s style
    change
 *     ```
       #header {
       height: 115px;
       padding: 0 0 0 18px;
       }
       ```
   
 * to
 *     ```
       #header {
       display:block;
       height: 115px;
       overflow:hidden;
       }
       ```
   
 * add style
 *     ```
       #header a{
       display:block;
       padding-top: 200px;
       }
       ```
   
 *  Thread Starter [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411019)
 * Thank you Timdesain, it is clickable now to blog home page now. I would like 
   the header to point to bequjuice.com. Is it possible for me to do that?
 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411033)
 * open header.php
 * change (dynamic, point to blog)
    `<h1><a href="*">beQu Juice::Premium Juice Brand
   Blog</a></h1>`
 * to (static, point to store)
    `<h1><a href="http://bequjuice.com/">Your Text</
   a></h1>`
 *  Thread Starter [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411036)
 * I changed:
    `<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?
   ></a></h1>`
 * to
 *     ```
       <div id="header">
   
       <h1><a href="http://bequjuice.com/">beQu Juice::Premium Juice Brand</a></h1>
       <h3><?php bloginfo('description'); ?></h3>
   
       </div>
       ```
   
 * is this correct?
 * In internet explorer when I click on the heading first it does this:
    [http://bequjuice.com/blog/www.bequjuice.com/](http://bequjuice.com/blog/www.bequjuice.com/)
 * then when I click the second time it does go to [http://www.bequjuice.com](http://www.bequjuice.com),
   weird.
 * any ideas why this is happening?
 * Thanks.
 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411040)
 * on blog’s homepage your header point to [http://bequjuice.com/blog/www.bequjuice.com/](http://bequjuice.com/blog/www.bequjuice.com/)
 * and point to [http://www.bequjuice.com/](http://www.bequjuice.com/) on the others
 * check your `index.php`
    is `get_header();` exist?
 *  Thread Starter [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411042)
 * Yes it does. This is what it is:
 *     ```
       <?php get_header(); ?>
   
                   <div id="content" class="column">
       ```
   
 * what should i do with it?
 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411049)
 * it is weird.
    any body have an idea?
 *  Thread Starter [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411060)
 * Can someone please help with this?
 * In explorer when I click on the header the first time it goes here:
    [http://bequjuice.com/blog/www.bequjuice.com/](http://bequjuice.com/blog/www.bequjuice.com/)
   When I click the second time, then it goes to the desired location of here: [http://www.bequjuice.com](http://www.bequjuice.com)
 * In firefox it seems to be working correctly and goes to [http://www.bequjuice.com](http://www.bequjuice.com).
 *  [TimDesain](https://wordpress.org/support/users/timdesain/)
 * (@timdesain)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411062)
 * We need see the code of your `header.php` so paste in [http://wordpress.pastebin.com](http://wordpress.pastebin.com)
   
   then post the url here
 *  Thread Starter [sharc316](https://wordpress.org/support/users/sharc316/)
 * (@sharc316)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411063)
 * Posted here:
 * [http://pastebin.com/L4FTvmnZ](http://pastebin.com/L4FTvmnZ)

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Fixed Blix Theme Header Clickable’ is closed to new replies.

 * 12 replies
 * 2 participants
 * Last reply from: [sharc316](https://wordpress.org/support/users/sharc316/)
 * Last activity: [14 years, 6 months ago](https://wordpress.org/support/topic/fixed-blix-theme-header-clickable-1/#post-2411063)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
