taylorishere
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Replace a category page with a normal pageThe problem I anticipate is this, from that same page:
Pages cannot be associated with Categories and cannot be assigned Tags. The organizational structure for Pages comes only from their hierarchical interrelationships, and not from Tags or Categories.
So, if a user hits the breadcrumb, or goes to the category page, it goes to the category, not the page. So, essentially, if I want to replace a category page, I’d have to hardcode it into the category-x.php page.
If I made a page template “category-x.php”, would the page replace the category?
Forum: Fixing WordPress
In reply to: A member dependent login buttonI think I figured it out, with this code:
function loginlogout_button() { if ( is_user_logged_in() ) {?> <div id="loginbutton"><a>" title="Logout">Logout</a></div><?php; } else {?> <div id="loginbutton"><a href="[USER DEFINED URL]" title="Login">Login</a></div><?php; };Forum: Fixing WordPress
In reply to: How to Add a Carousel to Your Thesis BlogI have your answers!
The images have to be “thumbnailed” using a script. So you have to change “
http://www.wolf-howl.com/wp-content/themes/thesis-wolf/lib/scripts/thumb.php” to “YOURDOMAIN/wp-content/themes/THESIS FOLDER NAME/lib/scripts/thumb.php” followed up by the rest of the code.Also, you have to modify the “
if (is_single ()){” statement (that says that the carousel only shows on single post pages). The codes can be found here: http://codex.wordpress.org/Conditional_Tags. I used “is_home()” to put it only on the home page.That worked for me.
Forum: Everything else WordPress
In reply to: Will someone help me convert a table to CSS?Yeah, I looked at this, and tried the list, but I’m still having trouble with it.
Forum: Themes and Templates
In reply to: CSS works in Safari, not in Firefox… Help!hrm. All fixed. There was a space between style and sheet.
Forum: Themes and Templates
In reply to: CSS works in Safari, not in Firefox… Help!Here’s my css code:
#footer{
margin-left: 120px;
}#sidebar
{
float: left;
width: 120px;
margin-top: 1em;
}#sidebar li {
list-style: none;
}#content{
margin-left: 120px;
margin-top: 1em;
}body,td,th {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
}a {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
color: #99FF99;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #99FF99;
}
a:hover {
text-decoration: none;
color: #FFFFFF;
}
a:active {
text-decoration: none;
color: #FFFFFF;
}.subscribe{font-size: 12px;}
.title{font-size: 17px;
color: #CCFFCC;
font-family: Arial, Helvetica, sans-serif;}
.style10{font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;}
.style12{font-size: 12px;
font-family: Arial, Helvetica, sans-serif; color: #FFFFFF;}
.style14{font-size: 14px;
font-family: Arial, Helvetica, sans-serif; color: #FFFFFF;}
.style16{font-size: 16px;
font-family: Arial, Helvetica, sans-serif; color: #FFFFFF;}
.style18{font-size: 18px;
font-family: Arial, Helvetica, sans-serif; color: #FFFFFF;}Forum: Themes and Templates
In reply to: CSS works in Safari, not in Firefox… Help!in safari, the menu “floats” on the left, and the content is on the right, with all the text being white. In firefox, it’s not working… that’s the problem i’m having.