ftstone
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot modify header information – headers already sent byI have tried this and it doesnt seem to change anything
Forum: Networking WordPress
In reply to: Is multisite the right solution?Currently it is hosted and is installed on lefish.com, so I guess the best solution is to activate multisite on this install and graft the new site on this?
In this case should I create a static page for the site I have already running?
Forum: Networking WordPress
In reply to: Is multisite the right solution?yes.
Forum: Networking WordPress
In reply to: Is multisite the right solution?Schweet! In that case can I import my old website settings and content (the one of the first branch) as one of the sub-site?
Forum: Networking WordPress
In reply to: Is multisite the right solution?#Andrea_r: Thanks for the quick anwer, but in this case how to get it to redirect to two different wordpress site ? One for each branches?
Forum: Installing WordPress
In reply to: Problem with transffering from local to server.Thanks guys ! adding a Define line in the wp-config file, solved it nicely!
Forum: Themes and Templates
In reply to: Coraline and custom menu.I have been trying to mod some of the cod below, but I am a bit lost in what I should try to change and all margin change I seem to make don’t seem to solve my problem 🙁 . Thanks for any help
#access {
border-top: 1px solid #ccc;
display: block;
float: left;
margin: 0 auto ;
padding: 3px 0 3;
width: 100%;
}
#access ul {
font-family: “Helvetica Neue”, Arial, Helvetica, “Nimbus Sans L”, sans-serif;
font-size: 11px;
font-weight: bold;
list-style: none;
margin: 0;
padding-left: 0;
text-transform: uppercase;
}
#access li {
float: left;
position: relative;
}
#access a {
color: #000;
display: block;
line-height: 2em;
margin: 0 0px 0 0;
padding: 0.25em 1em 0;
text-decoration: none;
}
#access ul ul {
-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
display: none;
float: left;
font-weight: normal;
position: absolute;
top: 29px;
left: 0;
text-transform: none;
z-index: 99999;
width: 180px;
}
#access ul ul ul {
left: 100%;
top: 0;
}
#access ul ul a {
background: #000;
color: #eee;
line-height: 1em;
margin: 0;
padding: .66em .5em .5em 1em;
min-width: 180px;
height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
background: #000;
color: #fff;
}
#access ul ul a:hover {
background: #222;
}
#access ul li:hover > ul {
display: block;
}
#access .current_page_item a {
background: #000;
color: #fff;
}Forum: Themes and Templates
In reply to: Coraline and custom menu.Hi Chip,
Thanks for this, I will give it go tonight !Forum: Themes and Templates
In reply to: Coraline and custom menu.Thanks, but I am running this on Google chrome, I have been fiddling a bit with the parenting and it doesn’t seem to solve it either. The drop down appears when I hoover on the main page, but I soon as I go into the dropped down menu it dissapear.
Anyone ?
Forum: Themes and Templates
In reply to: Changing Post Widthwhoooooaaaaa thank you !
after a more or less long period of trial and error I enter the following CSS code in the stylesheet:#content.shop { width: 770px; padding: 0 40px 0 0; float: left; }
worked wonders !
Forum: Themes and Templates
In reply to: Changing Post Widththank a lot for the answer, no of it still work, but I blame it on my lack of knowledge 🙂 I am working on my site locally so can’t give you a link however this is the .php for the page I am trying to modify the width.
<?php
/*
Template Name: Shop
*/
php?><?php get_header(); ?>
<div id=”content_box”>
<div id=”content” class=”shop”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”entry”>
<?php the_content(‘<p>Read the rest of this page →</p>’); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
</div><?php endwhile; endif; ?>
<?php get_footer(); ?>
I have just created my page on the dashboard, I am wondering if I am to specify something in the code, css or php to be able to tweak them ?
Forum: Themes and Templates
In reply to: Changing Post Widththanks a lot for the link,
I am still not sure, of what you advice relate to ? Do you mean I should create a class that is related to just the page that I want to mod. with a wider width ? then use :<style type=”text/css” media=”screen”>
<?php
// Checks to see whether it is ‘page’
if ( is_page() ) {
// on ‘page’ //
?>
.post { width: 640px; }
<?php } else { ?>
.post { width: 640px; }
<?php } ?></style>
with the new class I created ? and if so would that work if i stil put it in the header ? at the min, I have tried your solution which worked but unfortunately it only modifies the width of my front page.
Forum: Themes and Templates
In reply to: Changing Post Widthhey guys, just stumbled upon this, and am looking for something similar, but which is not gonna affect my front page which is two column, but the rest of my pages which are static and one column >?
Forum: Themes and Templates
In reply to: Changing the number of column on my page ?hey Dave,
thanks a lot for the answer, it doesnt seem that there is indeed a single column template in the theme I got, which I was quite happy about it. It seeems however that there is a certain amount of tutorial to help with creating a new template for the pages am creating… I will see how it goes and post again if I am really struggling 🙂
thanks anyway!Forum: Fixing WordPress
In reply to: Working on the website before putting it onlinethanks a lot for all the rapid answers,
I am done with the install process, unfortunately I the WP install does not work :
I have my XAMPP folder under C:
I have my WordPress folder under xampplite/htdocs/wordpressWhen I type : http://localhost/wordpress/wp-admin/install.php in my browser this is the message I am getting:
Error establishing a database connection
This either means that the username and password information in your wp-config.php file is incorrect or we can’t contact the database server at localhost. This could mean your host’s database server is down.Are you sure you have the correct username and password?
Are you sure that you have typed the correct hostname?
Are you sure that the database server is running?
If you’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.I understand this something I have probably done wrong with the wp-config file, this is what it reads at the minute :
/ ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘wordpress’);/** MySQL database username */
define(‘DB_USER’, ‘root’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘yourpasswordhere’);/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);/** Database Charset to use in creating database tables. */
define(‘DB_CHARSET’, ‘utf8’);/** The Database Collate type. Don’t change this if in doubt. */
define(‘DB_COLLATE’, ”);So I expect this has something to do with either my config file or Xampp ? Anyone’s got an idea ?>
thanks a lot again ! 😀