Root
Forum Replies Created
-
Forum: Themes and Templates
In reply to: confused on theme filesAs usual a link to yr blog would help us help you.
Forum: Themes and Templates
In reply to: wordpress.org available themesFind any u like and ftp them to yr site.
Forum: Themes and Templates
In reply to: WordPress Header/Menu on Non-WordPress-PagesYr question is really confusing. You start out saying you want the same style applied and the next second u are loading wp functions into another application.
Forum: Fixing WordPress
In reply to: WP 3.0.3The most efficient – and least used – method is to use SVN.
Forum: Fixing WordPress
In reply to: Customizing the BannerWe cant see yr php files of course. If u want us too u can post them in the
Pastebin so we can read them. A bit daunting for a newbie but u unlock access to much more support if u can manage it.Forum: Fixing WordPress
In reply to: creating a page to display custom loopYou very rarely need to query posts or the db. Certainly not for what you are doing. WP packages all http requests, queries the mysql db, and stores the output in a global variable which is of course an array. It then passes the request to the relevant theme template page using the template hierarchy. Requests to the domain are routed to home.php if it exists. The template then accesses the global and displays the data.
SO: In home.php all you need go is access the global variable array by looping thru it which u can do one or more times. In addition there are template tags which are shortened if used inside the loop. These are used for each element in an instance in the array.
In summary: From what u said: Running the loop is a different operation from running a db query. Its all in the Codex documentation.
Forum: Themes and Templates
In reply to: Unable to locate font code in CSS to resizeYr CSS is being imported from css/screen.css but you can override it.
Just put body {font-size: 100%} at the end of yr css and adjust from there.
Forum: Themes and Templates
In reply to: Styling The CommentsOf course. Just add the extra greetings into comments.php
Forum: Themes and Templates
In reply to: wp_footer(); is not workingWhat do u think it should be doing ?
Forum: Themes and Templates
In reply to: Text going out of bounda blog always needs room to expand downwards……….
Forum: Themes and Templates
In reply to: home pageOnly you see the edit / login options…….
Forum: Themes and Templates
In reply to: CSS sprite navigation not working properly.that .current is wrecking the whole thing
active is currentForum: Themes and Templates
In reply to: Attempting to Refine CSS Styling of blockquote…blockquote p {width: 70%; float: right}
Forum: Themes and Templates
In reply to: CSS sprite navigation not working properly.we always style our links in the following order
a:link
a:visited
a:hover
a:activeForum: Themes and Templates
In reply to: home.php not workingno need to set up the static page.
undo that
the template hierarchy directs urls for the root to home.php if it exists.