wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Yoko Theme: Header image change on seperate pages.Hi,
You are advised to use a child theme for any edits to save your data from loosing upon updating your theme in future.
Refer to this:
http://codex.wordpress.org/Child_ThemesYou can find the header.php file from Appearence>>editor from your dashboard..
Cheers..:)..
Forum: Themes and Templates
In reply to: [Iconic One] Featured Image in PostHI,
Just insert it from dashboard while adding a new post.Featured image option is on the right hand side below.Cheer..:)..
Forum: Themes and Templates
In reply to: Yoko Theme: Header image change on seperate pages.Hi,
You can use conditional statements inside the header.php file of your child theme to display header image only on home page,like<?php if(is_home) { ?> <div class="head-img"> ... </div> <!-- END Header --> <?php } ?>or
You can use CSS to hide it on other pages via
display:nonepropertyForum: Themes and Templates
In reply to: [Expound] Triangle pointer on selected menu itemHi,
Pls post a link to your site..Cheers…:)..
Forum: Themes and Templates
In reply to: [Customizr] Change color of taglineHi,
You can change it via CSS, pls post a link to your site for further help..cheers..:)..
Place this in your child theme CSS file
.hgroup-wrap { display: none; }Cheer..:)..
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Need a little CSS helpHi,
Check this out:http://slobodanmanic.com/444/flexible-horizontal-sidebars-wordpress-twenty-thirteen-child-theme/
Cheers..:)..
Hi,
Pls post a link to your website..?Cheers..:)..
Forum: Themes and Templates
In reply to: [Gridiculous] Removal of space above banner and below menuAnd regarding that space appearing in the other pages, It is due to margin applied on the
ptag.I see that you have placed the image first and aligned it to the right, but that image is being surrounded by
ptag on which a margin top and bottom of 16px is being applied somewhere in your css.You just need to reset the margin on
ptag to ensure the space is removed on all of the pages.Cheers..:)..
Forum: Themes and Templates
In reply to: [Gridiculous] Removal of space above banner and below menuHi joshaw,
Yea, the important is used or often misused for overriding any unwanted css rules.The rule with !important gets applied with topmost priority but using !important frequently and unnecessarily can cause a lot of problems in future, for this pls refer to great article:http://css-tricks.com/when-using-important-is-the-right-choice/
In your case try not removing !important and then see if it works, i did that in firebug and it worked.
Should use important only as a last alternative.
Forum: Themes and Templates
In reply to: [Gridiculous] Removal of space above banner and below menuHi,
The code should work, try usingimportant!:.header-widget { float: right; margin: 0 !important; }and no need of px when 0.
And for the space between the menu and the content reduce this argin to 0.#main { margin-top: 40px; }Cheers..:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteYeah i checked your site, you placed it from dashboard.
It’s fine.Header image is called in header.php file.
Just place the above code in it.
And use child theme, do no edit the source file directly.Cheers..:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi,
From where did you place the header image..?
You can place this code inside header.php file.<map name="header-stein-hawt"> <area shape="rect" coords="275, 0, 645, 100" href="http://haveartwilltravel.org" title="Have Art: Will Travel! Inc." alt="Have Art: Will Travel! Inc." /> </map>Cheers..:)..
Forum: Themes and Templates
In reply to: How to move a slider to the right side on featured contentHi,
Just give you second slider afloat:leftand then the slider next to it will automatically come to the right.
Cheers..:)..
Forum: Themes and Templates
In reply to: Font Size for Tagline and Navigation MenuHi,
You have declared two font-sizes and in CSS the one which comes later is applied, So just comment the rem font-sizes or remove them.Cheers..:)..