ehab
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What files are always in every page, no matter what theme you use?Not to my knowledge, No, there are no such files being called in that way.
Why do you always keep changing themes anyway ?
What all (good) themes does is, call the wp_footer function. You could find a way to include your function within that function. I do not know how to do that.
Forum: Fixing WordPress
In reply to: dmin edit-comments.php does not list all commentsDid you just say
WP2.0.11 blogs
?
Does it mean you are running WordPress version 2.0.11 ?
If you Are doing that – it would be More than wise to upgrade and Now would be the best time !
Forum: Fixing WordPress
In reply to: viewing word press on local machineπ
Hairball,
I think what you Really need to do is, setup a database first. Once that is done, you will get the information needed to make a
wp-config.phpfile.If this sounds awfully nasty to you, you can always get it all done in a click, to feed your blogging hunger and get a blog in your localhost later as you learn more.
Forum: Fixing WordPress
In reply to: Is this correct? regarding paths in themesIf you see the theme files of the Default theme, you would see that it is addressed in such manner.
So yeah, to include
domain.com/wp/include.phpYou address it as
include.phpForum: Themes and Templates
In reply to: New “Why walk alone?” ThemeSponsored link in footer.php
Double that.
Anyway, I do not like the typography – doesn’t go with the rest of the content.
Good luck !
Forum: Themes and Templates
In reply to: Why does my header keep turning all black/oversized??restoring my stylesheet
It means you did something wrong while editing the stylesheet. Unless we can see what you did wrong, it is not possible to tell.
Even the smallest wrong change in value can trigger a massive nuclear reaction (just kidding :P)
Forum: Themes and Templates
In reply to: How do you edit post title background/paddingWhenever I try to edit the h1 background color in my stylesheet it adds a background to the post titles and to the sidebar categories… Why is this happening?
Because your Sidebar Also uses the same h1.
If you want to make them different, you would have to create a new h1 style and call it h1a or whatever you want and call it from the sidebar π
Forum: Themes and Templates
In reply to: 3 column static pageNo.
In WordPress, the columns are known as Sidebars, which you have to include in the Single.php of your theme.
Therefore, whatever content you want to put, you would have to put them in those two sidebar of yours.
Example:
- Put links to your facebook profile in LeftSidebar.php
- Put links to your flickR profile in RightSidebar.php
- Include LeftSidebar.php and RightSidebar.php in the Single.php
Forum: Themes and Templates
In reply to: Sidebar forced to the bottom on single postsYup. Its the margin that is causing the problem. Make sure the margins and dimensions are same for Single post content and Index page content.
Forum: Themes and Templates
In reply to: Mushblue Theme EditAs I mentioned earlier, this is a rather advanced technique (image replacement) and the Tutorial I gave you shows you how to do that.
I was just wondering why doesn’t anyone atleast post their website addresses so that the ones trying to help atleast gets a hang of things. man !
Forum: Fixing WordPress
In reply to: Word press is not allowing me to use paragraphsYou mean the spacing between the lines are lost ?
Try not to use the visual editor and write like this:
<p>First line</p> <p>Second line</p>If configured properly in your theme, this would render enough space between the lines
Forum: Fixing WordPress
In reply to: Post cannot add p tag<p>This is the first Line </p> <p>This is another line </p>If this is what you see in your source code, and you still do not get that bigger space in between your paragraphs, then your Theme is not configured to do so.
Forum: Fixing WordPress
In reply to: php include within posts, possible?Why not π ?
Go ahead and try it out.
Just add the following line to where ever you want.
If the file is in your themes directory
<?php include (TEMPLATEPATH . "/searchform.php"); ?>Else where,
<?php include ("URL to your .php file"); ?>Forum: Themes and Templates
In reply to: Mushblue Theme EditHi sonnyali
You did a bad thing removing the Title of your website, now, search engines would have no clue what to do !
The ideal solution is to code your stylesheet so that the image is placed on top of the text, that way, search engines don’t miss a thing – and you visitors look upon the nice header image.
It is called Image Replacement. You can check my site, I have done that successfully. If you load with page with Images turned off, you see the normal text based logo.
Here are some nice techniques on how to do this. It is actually a pretty long technique, you might as well hire someone to do it for you if it look all that hard.
Forum: Plugins
In reply to: Firefox Search PluginDear XoseD
I believe this website lets you create your own Firefox search engine using the Google Custom Search API π
Have fun !