bage1
Forum Replies Created
-
Forum: Installing WordPress
In reply to: problems with 2.8.4 upgrade – cannot log out, view private..seems like I managed to fix it.
I went through everything listed here: http://codex.wordpress.org/Changing_The_Site_URL
even though the URL seemed to be entered everywhere the correct way, entering the appropriate lines to wp-congif and logging in and out through wp-login.php seemed to make everything function normally.
Forum: Fixing WordPress
In reply to: including author name in certain posts while hiding in othershmm
I think there might be something else wrong, both of the suggestions seem to show up as “adminBy admin”
Forum: Fixing WordPress
In reply to: including author name in certain posts while hiding in othersbump, any other ideas?
Forum: Installing WordPress
In reply to: problems with 2.8.4 upgrade – cannot log out, view private..I might’ve pinpointed the trouble, my site URL has always been without www, like http://site.com.
this is how the blog URL has also been set up in the settings, now I randomly tried switching it to http://www.site.com, and whaddaya know, everything works now.
tried taking www out again, and the problems are back. I assume the url is logged somewhere in the wrong way, but where? I wish to keep using the URL without the www, so would need it to work that way.
Forum: Themes and Templates
In reply to: problem with image alignmentI looked through other themes, and found the alignments missing in mine (below), this seemed to correct it. I didn’t realize it before as I was only looking for something directly under parts with “img” 🙂
.aligncenter, div.aligncenter { display: block; margin-left: auto; margin-right: auto; } .alignleft { float: left; } .alignright { float: right; }Forum: Themes and Templates
In reply to: problem with image alignmentat first I couldn’t get text next to an image even if I specified so when adding the image (img class=alignleft). it was still showing like in the first screeshot link, at the first row of the text.
if I add “float: left” to the CSS, it forces ALL images to left instead of allowing me to manually choose how its placed.
what I would like to do is be able to manually enter alignment for each image, so that some can be aligned to the left, others simply above or below text, some to the right etc.
thanks for your help
Forum: Themes and Templates
In reply to: problem with image alignmentI tried that earlier, but it causes ALL images to align left despite what alignment I choose for them individually.
this way, even if I have
class="alignnone"in the image attributes, it looks like this: http://i29.tinypic.com/2d8qn1v.jpgthe text is forced to the right side of the image even though its entered below it. How would I be able to choose whether the text is below the image or next to it?
Forum: Themes and Templates
In reply to: problem with image alignmentsorry about the lengthy paste, here is the CSS: http://pastebin.com/m7bfee292
Forum: Fixing WordPress
In reply to: including author name in certain posts while hiding in othersthanks for the ideas, but neither one seems to work at least set up like that, it seems to show the author name even if its admin.
unfortunately I don’t have enough knowledge over php to know whats wrong with it, any ideas?
Forum: Fixing WordPress
In reply to: including author name in certain posts while hiding in othersupp
Forum: Fixing WordPress
In reply to: including author name in certain posts while hiding in othersbump
any thoughts on how to exclude a certain author name from showing up while others will show regularly?
Forum: Themes and Templates
In reply to: can’t see “get_sidebar”, what is calling my sidebar?any ideas..?
Forum: Themes and Templates
In reply to: can’t see “get_sidebar”, what is calling my sidebar?would I be able to use something like this in sidebar.php?
<?php if (is_page('index.php')){ <?php include(TEMPLATEPATH.'/sidebar-index.php'); ?> } elseif (is_page('single.php')){ <?php include(TEMPLATEPATH.'/sidebar-single.php'); ?> } else { <?php include(TEMPLATEPATH.'/sidebar.php'); ?> } ?>Forum: Themes and Templates
In reply to: can’t see “get_sidebar”, what is calling my sidebar?thanks, didn’t find it in the footer but checked the header while at it, and seems like its called from there.
how would I go about calling a different sidebar for index.php and single.php in this case? is there a way to call a different sidebar based on which page the header is on at that time?
Forum: Fixing WordPress
In reply to: images not aligning to the left (stylesheet included)that did the trick, thanks!