Forum Replies Created
-
In reply to: Want to add a navigation header
Give it a unique DIV ID and copy the same CSS from WP & obviously change the DIV ID name to what you have changed.
In reply to: Step two questionsFrom phpMyAdmin, select bbPress tables and delete them by “drop” option. Before doing anything, takes a backup incase anything goes wrong.
In reply to: Step two questionsEmpty the database and then try to re-install it.
In reply to: WP 2.7.1 and bbPress 0.9All done by now. Just wanted to share the upgrading instructions I wrote yesterday : http://blog.ashfame.com/2009/07/upgrade-existing-integrated-installations-of-wordpress-bbpress/
In reply to: IntegrationFollow my tutorial http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/
and it should be fine. If not then let me know.
In reply to: problem after installingMay be you are out of track and I guess its a new forum setup. How about deleting the database and all the files and do it again. Make sure you do empty the database and recreate the sub-folder
forum
.In reply to: Extend Section Login SyncBut my both passwords are different.
In reply to: what have i done wrong??your footer DIV & one more DIV is out of the wrapper DIV. u knw it, right?
And before banging your head with CSS issues make sure the document validates. Currently it has 24 errors.
In reply to: Extend Section Login SyncI got it!
One more question – We can login through WordPress.org accounts too. I once checked that I can and was wondering its implementation and the thing that if I am logged into the same account or there are two accounts for myself?
In reply to: problem after installingDid the installation went smooth or any issues were there? I would recommend checking the database if it really contains the tables created and then the
bb-config.php
file to check if its filled with required data.In reply to: Problem adapting theme from wordpressNice
In reply to: Need help with some colour alterations.If changes made by you are not reflecting in CSS, then there is something which is over riding it. You need to catch that.
Like the priority order in Inline, Internal and then External.
Read more here – http://www.plus2net.com/html_tutorial/css-types.php
Hope that helps
In reply to: Problem adapting theme from wordpressDid you read my reply over bbshowase? Thats the way it can be solved. To help you in your aim, install Firebug on Firefox. Run it using
F12
and then you can catch the DIV you want.Hope that helps
In reply to: would this work for links?Place the navigation DIV code just after the
<div id="header">
.......................
</div>and before the
<div id="main">
<?php if ( is_bb_profile() ) profile_menu(); ?>In reply to: theme help pleasePlease don’t use Capital letters. Its considered as shouting.
Glad that you did it.
In reply to: Nginx Rewrite Rules for Pretty PermalinksIn reply to: how to add a sticky in postAre you on v1.0 now? If yes you are out of luck as most of the plugins won’t work with the newer version due to a lot of code which has been changed in bbPress.
P.S. – You can email me at
ashishsainiashfame@gmail.com
In reply to: theme help please<div id="blah">
<div class="box">
Content
</div>
<div class="box">
Content
</div>
<div class="box">
Content
</div>
</div>These are containers to hold data. A bigger container can have a smaller container
Page contents are divided in DVIs and then styling to these contents is applied through CSS.
Got it now?
In reply to: how to add a sticky in postYou are calling an undefined function. A quick search reveals that the function is of bbPress Polls Plugin. Make sure the plugin is installed & activated.
In reply to: theme help pleaseNow that DIV you need to find out yourself.
Install Firebug (Firefox Add-on).
Open your forum and press
F12
.Now find the respective DIV.
You are new to CSS. So go by Hit n Trial method
I got it! No issues. Well, Can you recommend what approach should I have to grasp all the code of bbPress as there is no Codex at the moment. I remember you stating earlier that you learnt by studying others’ plugins. Any suggestions in this regard would be of great help. Thanks
In reply to: theme help pleaseAdd that in style sheet. I use Notepad++ for all my coding needs.
You need to check out where you want the background i.e. the background of which DIV and then you can add this into style sheet :
#DIV_WHERE_YOU_WANT_BG {
background-image:url('img.gif');
}and the path to the image is relative to the file. make sure it is correct too.
In reply to: Problem adapting theme from wordpressI posted another reply there. Check that out too.
In reply to: Linking back to main website.in
header.php
where thebody
tag starts.After this
<body id="<?php bb_location(); ?>">
<div id="wrapper">
<div id="header" role="banner">