forunner
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multiple page.php file inside the theme folder?in your theme, add the page2.php with (in the beginning 🙂
<?php /* Template Name: template page2 */now, in the dashboard, when you will create (or update) a page, you could choose the template “template page2”
Forum: Fixing WordPress
In reply to: Categories problemare they in the database?
Forum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??the subject is resolved ? great :p
I’ve found an explanation for duplicate objects in menu, I repost it here to help … if someone as the same problem :
AntonShevchuk said :After update to version 3.0 you can see new (or duplicate) items in top menu. Don’t worry – it’s not a bug. It’s new feature of WP 3.0. Open navigation menu settings (/wp-admin/nav-menus.php) and change it (or remove).
Constructor 1.0.4 and early use first available menu.
From version 1.0.5 constructor use menu with title “Header Menu”.Forum: Fixing WordPress
In reply to: Search results — second posts indenteach time your search find a new result, it creat a new div which will contain all the other result
you have a padding inside this div, so each time you have more…space
you have to modify the padding of the #content .post in your css
Forum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??or a
wp_nav_menu()edit :
problem solved :p
put the subject on solved ^^Forum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??can you show your code ?
I think the first one has been added “manually” – the second one is created by the wordpress menu
Forum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??keesiemeijer is right – it works – if it don’t work on your computer you should try to clear your browser’s cache
Forum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??I can’t
I’m working
let me your msn if want to speak….laterForum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??I don’t know
you said you upload “the new code”
in what folder did you upload it :p ?and… when I do some test on localhost, sometimes in my url, I put “localhost”, maybe it will be a problem if you have not upload …everything
Forum: Fixing WordPress
In reply to: Image and text side by side in my postthat’s true, if you change something on your css, don’t change all the images like I said ^^ it was an example
only change for the class or the id corresponding :pForum: Fixing WordPress
In reply to: GOING CRAZY – HTML page links not working??check if you have put the css / the html in the good folder, and if you’re not using absolute path [for your local computer…that you’ve forget to change] to get the css, or images, ect
Forum: Fixing WordPress
In reply to: Image and text side by side in my postin wordpress\wp-content\themes\your_theme\style.css
Forum: Fixing WordPress
In reply to: Image and text side by side in my postyou can try to change the img properties in the css of your theme to have what you want to have :p
I think you just want something like that :
img{ float: left; }Forum: Fixing WordPress
In reply to: Nav Bar Menu Issesthe menu create a ul because it is mandatory to contain “li”
maybe [MAYBE] your menu could works if you delete your own ul, and put the menu_id instead your ul inside your css?Forum: Fixing WordPress
In reply to: Retrieving Post ID For Comments?I don’t think you can do sql request like that lol [maybe it works in wordpress, but this is the first time I see that thing]
I’m using pdo to do my request, but try to look here : wpdbtry to use the ID that you will find in your call of the photo instead $post->id
I may be totally wrong about the solution… maybe Rahul Sonar was thinking about something else