places
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Page w/ HighlightYes, but you forgot the $ before highlight
Forum: Plugins
In reply to: 1 blog, 2 different WP installations 2 different sqlsIf you want posting in both blogs that would be very difficult.
If you just want to mirror the one database that would be a little easier.
1) Keep track of the changes in the database.
2) Move the data to the other server (encrypted) and
3) update the second database.Another possibility is to send every new post, page… to the second server.
Both possibilities require php-skills.
Forum: Themes and Templates
In reply to: changing templatesForum: Fixing WordPress
In reply to: Custom Page w/ HighlightYou are testing if the actual page is a page, try something like
if (is_home()) $highlight1=”current”; elseif (!is_page()) $highlight2=”current”;
Use higlight1 for the class in home
Use higlight2 for the class in galleryForum: Fixing WordPress
In reply to: Custom Page w/ HighlightForum: Themes and Templates
In reply to: Hm Footer img is on the leftIt looks like an error in yur css. Have a look at the footer-styles.
Another possibility is that you forgot to close or open the last div.
EDIT:
OK I got the url from your picture:You have the page-tag, which is centered, and two enclosed frames, which are floating left.
I think you closed the page-div before you opened the second frame(2).Have a look at
https://validator.w3.org/check?uri=http%3A%2F%2Fwww.danischa.xetaspace.net%2Findex.phpIt says, your code wants to close an unopened div at the end.
Forum: Plugins
In reply to: 1 blog, 2 different WP installations 2 different sqlsDo you have access to the scripts? Is it possible to upload your own scripts?
By the way, why do you want to have two blogs. It is easier to link from your own site to your new blog (or integrate as frame?)
Forum: Themes and Templates
In reply to: Post alignmentHave a look at your themes where the content begins.
Above that (like div id=content or table id=content) insert
<?php if (is_home()) echo “<div><img src=yourimage></div>” ?>Forum: Themes and Templates
In reply to: header image not shownThe code I posted is in your htm?-source. I do not know, if it is part of this Wordspew Plugin, or if you have to have a look in your theme-files.
Forum: Fixing WordPress
In reply to: 301 redirect from http to httpsIf you just want to redirect one or two pages set the rewrite rules like
RewriteRule ^page1(.*) https://%{SERVER_NAME}/page1$1 [R,L]
Forum: Fixing WordPress
In reply to: Problem with bulletsHave a look for a second definition in your style-sheets, perhaps something like a background/img definition for li?
Forum: Themes and Templates
In reply to: header image not shownYou have this code in your webpage, it changes the wanted image to https://www.danischa.xetaspace.net/wp-content/themes/default/images/header-img.php?upper=FF9999&lower=FFCCCC
<!-- Added By Wordspew Plugin. Version 1.16 -->
<link rel="stylesheet" href="https://www.danischa.xetaspace.net/wp-content/plugins/wordspew/css.php" type="text/css" />
<script type="text/javascript" src="https://www.danischa.xetaspace.net/wp-content/plugins/wordspew/fatAjax.php"></script>
<style type='text/css'>
<!--#header { background: url('https://www.danischa.xetaspace.net/wp-content/themes/default/images/header-img.php?upper=FF9999&lower=FFCCCC') no-repeat bottom center; }
#headerimg h1 a, #headerimg h1 a:visited, #headerimg .description { color: #E3E3E3; }
--></style>
</head>
<body>
<div id="page">
Forum: Themes and Templates
In reply to: header image not shownI see an image:
on both sites.
Forum: Fixing WordPress
In reply to: 301 redirect from http to httpsRewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]