Leo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Create Left SidebarDo this with ID=”sidebar” in template sidebar.php. You can have desired number of sidebars but remember to properly manage your list elements (i.e. categories pages etc) so that they may not cause any positioning problem. Then style your sidebar ID properly in your main style sheet and have your theme up and running.
Forum: Themes and Templates
In reply to: How to cusomise fonts for WP blue-dreamChange the color propertyin your CSS. I have seen your CSS code it comes color: #999; many times try changing color: #999; to color: black;
Forum: Themes and Templates
In reply to: How to implement more space between paragraphsDo like this: Introducing the SWFansite Podcast <br /> Show notes: It will put a blank line, if you like to add two blank lines put<br /><br /> and so on
Forum: Themes and Templates
In reply to: How to implement more space between paragraphsSee post below
Forum: Themes and Templates
In reply to: Box marginsDid you check the margin properties of parent box, sometimes they also cause problems. If you feel it impossible to track then try installing firebug, it is an addon to firefox. You will definitely do it by having firebug.
Forum: Themes and Templates
In reply to: Theme missing About pageYou missed a point it is: wordpress generates all the content and pages on the fly, i.e. it keeps no static pages as our other static websites do it keeps the data in the database and generates the pages on the fly.
So when you reinstalled your wordpress all your data got lost, the about page which you said is on your installation is inbuilt page which comes with installation.
So write the pages again which you need, then they will be available to you to use.~~~~
Forum: Themes and Templates
In reply to: multiple div’s in page.php problemIf you want your link pages be shown in text area, write it in text div as while coding the programmer created two divs one for picture and another for picture.
Forum: Themes and Templates
In reply to: Include template tags in regular php file?Simply include that script in your index.php, you can also do it with require();
It doesn’t matter where your index.php is but the path should be correct.Forum: Fixing WordPress
In reply to: How to make home page a static page?Use the exclude parameter to hide certain Pages from the list to be generated by wp_list_pages in your sidebar.php which is under wordpress\wp-content\themes\default\sidebar.php. You can do this as:
-
<?php wp_list_pages(‘exclude=17,38’ ); ?>