wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Expound] Triangle pointer on selected menu itemHi,
In your custom css in line 70 put this:border:noneThe 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
In reply to: Adding Logo to Left of Site Title and Tagline: Twenty TwelveHi,
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 afloat:leftproperty.
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
In reply to: Adding Logo to Left of Site Title and Tagline: Twenty TwelveHi, Pls post the link to your site..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteThat’s great, you did it…
Pls mark this thread as resolved.Cheers..:)
Forum: Themes and Templates
In reply to: [Twenty Ten] Site-Title ColorNo, But it’s easy to create a child theme.
Have a look:
http://codex.wordpress.org/Child_ThemesForum: Themes and Templates
In reply to: [Catch Box] Erase "copyright" in footerHi,
This has nothing to do with paid or free version,In both case you can use a child theme.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
In reply to: [Expound] Triangle pointer on selected menu itemHi,
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.cssCheers..:)..
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
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
In reply to: Spilt Oxygen Header to have one half link to another websiteMight have to use actions/filters then to override the parent theme function without editing the parent function file.
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi 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/DAbzfKyqFor Parent function file, replace that function with this one:
http://pastebin.com/QZ4t3HEFCheers..:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteMy 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@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
In reply to: Spilt Oxygen Header to have one half link to another websiteHi 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 and i can take a look at that.Cheers…:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteAnd to make your life easier you will find that
imgtag 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…:)..
Cheers..:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi,
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 theimgtag 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..:)..