Title: wp-21's Replies | WordPress.org

---

# wp-21

  [  ](https://wordpress.org/support/users/wp-21/)

 *   [Profile](https://wordpress.org/support/users/wp-21/)
 *   [Topics Started](https://wordpress.org/support/users/wp-21/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wp-21/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wp-21/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wp-21/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wp-21/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wp-21/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 216 total)

1 [2](https://wordpress.org/support/users/wp-21/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wp-21/replies/page/3/?output_format=md) …
[13](https://wordpress.org/support/users/wp-21/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/wp-21/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/wp-21/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/wp-21/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Expound] Triangle pointer on selected menu item](https://wordpress.org/support/topic/triangle-pointer-on-selected-menu-item/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/triangle-pointer-on-selected-menu-item/#post-4053949)
 * Hi,
    In your custom css in line 70 put this:
 * `border:none`
 * The pointer here is made by using border property , so you just need to remove
   the border.
 * It’s completely fine to use custom css, you can use either child theme or custom
   css as long as you don’t edit theme directly.
 * Cheers.:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Adding Logo to Left of Site Title and Tagline: Twenty Twelve](https://wordpress.org/support/topic/adding-logo-to-left-of-site-title-and-tagline-twenty-twelve/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/adding-logo-to-left-of-site-title-and-tagline-twenty-twelve/#post-3872789)
 * Hi,
    You just need to float that logo to the left in the CSS.You can do that 
   by creating a div around your code for the logo, giving it some class and then
   in your style.css file you can assign that class a `float:left` property. like
   this,
 *     ```
       <div class="logo">
       <a href=""><img src="yourlogo.jpg" /></a>
       </div>
       ```
   
 * in your style.css file:
 *     ```
       .logo {
       float:left;
       }
       ```
   
 * When you will give that div a float left property then the title and tagline 
   will automatically stick to its right.
    And do all of this in a child theme only,
   do not edit source files directly.
 * Cheers.:).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Adding Logo to Left of Site Title and Tagline: Twenty Twelve](https://wordpress.org/support/topic/adding-logo-to-left-of-site-title-and-tagline-twenty-twelve/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/adding-logo-to-left-of-site-title-and-tagline-twenty-twelve/#post-3872786)
 * Hi, Pls post the link to your site..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/page/3/#post-4034416)
 * That’s great, you did it…
    Pls mark this thread as resolved.
 * Cheers..:)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Ten] Site-Title Color](https://wordpress.org/support/topic/site-title-color/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/site-title-color/#post-4060940)
 * No, But it’s easy to create a child theme.
    Have a look: [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Catch Box] Erase "copyright" in footer](https://wordpress.org/support/topic/erase-copyright-in-footer/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/erase-copyright-in-footer/#post-4060934)
 * Hi,
    This has nothing to do with paid or free version,In both case you can use
   a [child theme](http://codex.wordpress.org/Child_Themes).The copyright info is
   present in your footer.php file. To remove the text you will have to create footer.
   php in your child theme and simply delete the text from there.
 * Remember to always use child theme, editing parent files directly is a bad practice
   because you will loose the changes when you update the theme in future.
 * Cheers..:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Expound] Triangle pointer on selected menu item](https://wordpress.org/support/topic/triangle-pointer-on-selected-menu-item/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/triangle-pointer-on-selected-menu-item/#post-4053868)
 * Hi,
    You can remove the arrow by using display:none in your child theme css file
   for the css property at line 189 in the expound.css
 * Cheers..:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Mantra] How to change the color of the text of columns in the page of displ](https://wordpress.org/support/topic/how-to-change-the-color-of-the-text-of-columns-in-the-page-of-displ/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-to-change-the-color-of-the-text-of-columns-in-the-page-of-displ/#post-4060266)
 * Hi,
    You can change the color by using CSS, but create a child theme first and
   do all the changes in that only, never directly edit the theme files as you will
   loose your data once theme is updated.Refer this for child theme:
 * [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 * And after that from your parent CSS file around line 4708, copy this into your
   child them style file and just add the color property as shown below:
 *     ```
       .column-text{
         text-align:justify;
       }
       ```
   
 * to this, by placing this in child theme style file:
 *     ```
       .column-text{
         color:#000;
         text-align:justify;
       }
       ```
   
 * You can use any color.
 * Cheers..:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/page/3/#post-4034392)
 * Might have to use actions/filters then to override the parent theme function 
   without editing the parent function file.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/page/3/#post-4034390)
 * Hi lindastein,
    I am sorry for telling you to edit the files directly, never 
   do that it is a bad practice.
 * @WPyogi-Should probably read more carefully, that article is where i found the
   solution and that certainly was not off the topic.
 * After long looking for a solution to the error i was able to finally sort it 
   out.
 * The error was due to the fact that, as the child theme function file is loaded
   before the parent theme function file the presence of functions with same name
   was causing the error.To overcome that you just need to enclose the parent theme
   function within a conditional statement and that’s it.
 * Here i have posted the code for both parent theme function file and child theme
   function file in pastebin.
 * For Child theme function file(replace the usemap id with yours):
    [http://pastebin.com/DAbzfKyq](http://pastebin.com/DAbzfKyq)
 * For Parent function file, replace that function with this one:
    [http://pastebin.com/QZ4t3HEF](http://pastebin.com/QZ4t3HEF)
 * Cheers..:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/page/2/#post-4034382)
 * My bad, pls do not edit directly.
 * But your advice:
    **You cannot copy a functions.php file to a child theme – it
   WILL crash the site. Remove that file from the child theme.  You can do it. refer
   to this article below: [http://codex.wordpress.org/Child_Themes#Using_functions.php](http://codex.wordpress.org/Child_Themes#Using_functions.php)
 * [@lindastein](https://wordpress.org/support/users/lindastein/)
    Do not copy entire
   functions.php file into your child theme functions file.Only place the code in
   that.
 * Cheers..:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/page/2/#post-4034379)
 * Hi lindastein,
    You can edit the function file directly, no problem.
 * I downloaded the theme and placed the id in my function file and it worked.
    
   You can post your code for the function file after placing the id in [pastebin](http://pastebin.com/)
   and i can take a look at that.
 * Cheers…:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/#post-4034367)
 * And to make your life easier you will find that `img` tag inside the functions.
   php file.
 * Look for this block of code:
 *     ```
       /**
        * Oxygen site title.
        *
        */
       function oxygen_site_title() {
   
       	$tag = ( is_front_page() ) ? 'h1' : 'div';
   
       	if ( get_header_image() ) {
   
       		echo '<' . $tag . ' id="site-title">' . "\n";
       			echo '<a href="' . get_home_url() . '" title="' . get_bloginfo( 'name' ) . '" rel="Home">' . "\n";
       				echo '<img class="logo" src="' . get_header_image() . '" alt="' . get_bloginfo( 'name' ) . '" />' . "\n";
       			echo '</a>' . "\n";
       		echo '</' . $tag . '>' . "\n";
       ```
   
 * This is just a snippet, and in this the img tag you see is responsible for the
   header image.
 * `echo '<img class="logo" src="' . get_header_image() . '" alt="' . get_bloginfo('
   name' ) . '" />'`
 * Now you just need to place that map id inside this tag as this:
 * `echo '<img class="logo" usemap='#header-stein-hawt3 src="' . get_header_image().'"
   alt="' . get_bloginfo( 'name' ) . '" />'`
 * and see the magic happen.
 * but to remind you use your child theme, do not edit this directly.
 * Cheers…:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Attitude] How to remove a "custom header" space in Attitude template](https://wordpress.org/support/topic/how-to-remove-a-custom-header-space-in-attitude-template/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-to-remove-a-custom-header-space-in-attitude-template/#post-4053223)
 * Cheers..:)..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spilt Oxygen Header to have one half link to another website](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/)
 *  [wp-21](https://wordpress.org/support/users/wp-21/)
 * (@wp-21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/spilt-oxygen-header-to-have-one-half-link-to-another-website/#post-4034366)
 * Hi,
    I saw your site, there is no need for second one as first one is working
   only thing is that you have placed the code for map but did not give the header
   image the map id.
 * I just did it in firebug and it is working.
 * You just need to place this `usemap="#header-stein-hawt3"` inside the `img`tag
   for the header image like this,
 * `<img class="logo" usemap="#header-stein-hawt3" src="http://lindastein.com/new/
   wp-content/uploads/2013/08/header-stein-hawt3.png" alt="LindaStein.com">`
 * and it works.
 * Cheers..:)..

Viewing 15 replies - 1 through 15 (of 216 total)

1 [2](https://wordpress.org/support/users/wp-21/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wp-21/replies/page/3/?output_format=md) …
[13](https://wordpress.org/support/users/wp-21/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/wp-21/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/wp-21/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/wp-21/replies/page/2/?output_format=md)