rezag
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: strange DB issueOdd one and shouldn’t be happening, can’t see how
Forum: Fixing WordPress
In reply to: strange DB issueDB details and nameservers (provided by the domain registrar) are the two possible connections between old and new sites. If those two are correctly changed the old one should be gone.
Forum: Fixing WordPress
In reply to: strange DB issueMoving sites doesn’t involve changing theme function files. If you follow the ‘usual’ route you can move, test new location and then delete old stuff.
Forum: Fixing WordPress
In reply to: Possible to Download posts?They are stored in the database, to download them you need to back up the database, either through your hosting control panel or by installing a WordPress plugin.
Forum: Fixing WordPress
In reply to: strange DB issuePlease describe what you mean by backtrack and disappearing.
If the old site files are the same as previously working ones then your host might have issues for exampleForum: Installing WordPress
In reply to: change url in existing databaseYou need to go through the steps described here http://codex.wordpress.org/Moving_WordPress
Forum: Fixing WordPress
In reply to: strange DB issueDid you change the DB details in the config at any point?
Forum: Fixing WordPress
In reply to: wordpress page HTMLIt all depends what you are trying to do. PHP is ‘processed’ when you see the source code of a page via Firebug or other methods.
Forum: Fixing WordPress
In reply to: Right sidebar text alignment suddenly forced centerYou’re welcome, the css is not cleanest because of all the declarations but it works.
Forum: Fixing WordPress
In reply to: Right sidebar text alignment suddenly forced centerAll those who don’t have their own text-align declaration are inherting it from
body’s text-align:center;
One, not very efficient, solution is to add the same
text-align:left;
to
.rssfeed and .box h2
Forum: Fixing WordPress
In reply to: Right sidebar text alignment suddenly forced centerTo your css
http://lalasunshine.com/apomstory/wp-content/themes/Bright-White/style.cssYou could so this if it doesn’t affect other text
Before
ul {list-style-type: none;}After
ul {
list-style-type:none;
text-align:left; }Be sure you keep back ups and are comfortable editing files such as these
Forum: Fixing WordPress
In reply to: Right sidebar text alignment suddenly forced centerThe center is being inherited from Body’s text-align:center;
May be you can add text-align:left; to ul if it doesn’t affect other parts of your page
Forum: Fixing WordPress
In reply to: Upgrade problemsIf you mean forum, program,etc?
Your top right is floating right
#header #topright {
text-align: right;
float: right;
width: 930px;
margin: 3px 0 0 0;Change the right to left or center maybe
NOTE: only first glance haven’t looked at your css and page structure fully, not sure if it will affect other stuff
Forum: Fixing WordPress
In reply to: How to add more fonts to blog?WP Google Fonts is one good and very recent method, worth a try if you are comfortable and like to use a plugin
http://wordpress.org/extend/plugins/wp-google-fonts/Comma separated category numbers
<?php query_posts('cat=-5,-6'); ?>