wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: z-index of individual menu linksHi,
I suppose you could use css3 properties like, nth-child etc. But might not be the ideal way of doing it.Cheers..:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi,
On seeing the site it seems that whole header is a single image here and already points to the site itself.
Please make it more clear…cheers.:)..
Forum: Themes and Templates
In reply to: [Mantra] Transparent images & bordersHi,Pls post a link to your site.
cheers..:)..
Forum: Themes and Templates
In reply to: [Custom Community] Space between bottom paragraph & footerHi cmurway,
On inspecting in firefox the cause for the space s obvious.
First of all there is amargin-bottom:15pxin your css file which is being applied toptag, you need to reset all the margins.
Secondly there are two unnecessary line-breaks inside your footer div, need to remove those.cheers..:)..
Forum: Themes and Templates
In reply to: [Pinboard] Too much space at header bar.HI, that’s great…..no it doesn’t matter as long as you don’t edit the theme files directly bcoz if you make changes to theme files directly you will loose any changes if you update the theme later on….
cheers..:)..
Forum: Themes and Templates
In reply to: [Scrappy] Can't change Brown Background to white (or clear)Hi,
The background color can be changed from the dashboard under the Appearence >> background
or you can change it from the css file in your child theme.The current background color is due to this property in your css file:
#page { background-color: #fcfbf4; margin: 0 auto; width: 900px; }You can comment out the background-color property like this:
/*background-color: #fcfbf4;*/
or change the color here to your own liking.
Cheers..:)..
Forum: Themes and Templates
In reply to: [Pinboard] Too much space at header bar.Hi, in your site the space is appearing due to a
#sidebar-headerdiv.
You need to hide that via css, its around 638th line in your css file,Just add the css property:
#sidebar-header{ display:none }in your child theme style file and you will be good to go.
Cheers..:)..
Hi, the space that you are seeing is appearing due to bottom margin applied to p tag in your css file.like this somewhere around 161 line not sure though abt the location.
p{ 0 0 1.5em 0 }You need to remove this margin to remove the space.
Cheers..:)..
Hi AynCG, Just looked at the first link and found out the problem.
Some text is appearing above the photo because the div containing the photo is float to left in css and the text following the photo is contained in p tag which is not cleared, which is causiing the problem.Just clear the float by placing a clearing div as:
<div style="clear:both"></div>after the div containig the photo and all will be good.
Forum: Themes and Templates
In reply to: Changing Entire ThemeHi…you can install any number of themes that you want, they all will be placed in the themes folder and you can access all of them from your dashboard from :
Appearence-themes
And you can activate the theme which you want to be displayed on your site from there.
Cheers..:)..
Forum: Fixing WordPress
In reply to: Error establishing a database connection. Please help!Hi,…
It generally means there is a problem in your config file and
you should check all the three points mentioned above in your wp-config.php file i.e. check your username and password, see that your host name is correct and contact your host and verify that your server isn’t down …You should check your hostname properly in wp-config file.It’s generally localhost but it can be different.
It can be found out from your cpanel of the website.
cheers..:)…
Forum: Themes and Templates
In reply to: [Pinboard] Facebook likeHi,…Pls post a link to your site..
Forum: Themes and Templates
In reply to: why is my sidebar not displaying until way down the page?Hi..had a look, found out the extra div which has been bothering you…
<?php easyrotator_display_rotator('erc_79_1374391970'); ?>There is an extra div here after this line which is making
div id="main"to close before the sidebar.
Just remove that extra div from there and you will be fine.
Cheers..:).
Forum: Themes and Templates
In reply to: why is my sidebar not displaying until way down the page?And also the footer.php also.
Forum: Themes and Templates
In reply to: why is my sidebar not displaying until way down the page?Hello, @dequecolour you should use pastebin for such long code.
Anyhow you also need to show your header.php code to so that the complete structure can be seen.
Your structure on the browser is being rendererd as this:
<div id="main" class="wrapper"> <div id="primary" class="site-content"> </div> <div id="secondary" class="widget-area" role="complementary">However it should be like this to depict correctly on the browser:
<div id="main" class="wrapper"> <div id="primary" class="site-content"> <div id="secondary" class="widget-area" role="complementary"> </div>You can post your code including the header.php structure also on the pastebin and i will have a look or if you can try for yourself i m sure you will figure it out, just case of rearranging the divs.
Cheers..:)..