susien
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Call Pages instead of Categories (Mimbo)Just wondering if anyone has an idea about how to do this. ??
Forum: Themes and Templates
In reply to: Remove Meta from themeIt looks like the sidebar is widgetized. Have you tried looking in Presentation > Widgets > and then dragging/dropping the Meta links?
Forum: Themes and Templates
In reply to: Custom page templateLook in the right column. There should be a drop down where you can select the template.
Forum: Themes and Templates
In reply to: Space between text and imageHere’s the way I do it because I don’t always want every image to be wrapped with text.
CSS:
.imageright {
float: right;
margin: 0 0 5px 5px;
}HTML:
<img class=”imageright” src=”path to image”>
You have to add the class=”imageright” in the Code view after you’ve uploaded the image.
There might be a simpler way of doing this, but this is how I like to do it since sometimes I want images to be on their own line.
Can you provide a link to your site or to this theme?
Forum: Themes and Templates
In reply to: UL or LI? I’m new and confusedIn your sidebar.php file, find the related section of code and change it to this:
<h2>Contact the Newsdesk</h2> <ul> <li><a target="_blank" href="https://mail.google.com/a/thewebdesignloft.com/?view=cm&tf=0&[email protected]">Email</a></li> </ul>
Forum: Themes and Templates
In reply to: In Over my Head? (Theme Authoring)I really like this tutorial. It’s pretty easy to follow.
Forum: Themes and Templates
In reply to: Text Not Flowing Around Image WIth Mimbo Template. Help!Hi,
Just add this to the content section of your CSS:
#content img { float: left; margin-right: 5px; }
You may need to adjust that margin to make it look like you want.
Forum: Themes and Templates
In reply to: Image path Problem.It shouldn’t take too long if the file size is small enough.
Forum: Themes and Templates
In reply to: Image path Problem.The images should go inside your theme’s image folder. And I’m not sure about your own server, but mine always requires that I type the full path of the image in order for it to show up. So, if you can’t get it with the relative path, try the absolute path.
Forum: Themes and Templates
In reply to: Missing Sidebar and FooterI don’t know what the problem is yet, but I see the sidebar and footer when viewing with Firefox. It’s not there with Internet Explorer. This tells me that something must be too large in size and is causing IE to misbehave.
ETA: Or maybe that’s not the problem. I would highly suggest that you validate your CSS and XHTML. There are a lot of errors and that alone could cause the layout to break.
Forum: Themes and Templates
In reply to: Change Text ColorI’m surprised to hear you’re viewing with FF. I received your email and just sent a reply. I’ll talk to you soon!
Forum: Themes and Templates
In reply to: HTML to WordPress ConversionHere’s a really good tutorial for creating a WordPress theme. Are you wanting to create it yourself or just hire someone to do it?
Forum: Themes and Templates
In reply to: Change Text ColorI see what the problem is. You’re viewing with Internet Explorer, aren’t you? Here’s what I see when viewing with Firefox.
I think I know how to fix this, but I’m going to have to try in a little while. I need to help my kids for a bit. I will be back, though. ??
Forum: Themes and Templates
In reply to: Change Text ColorI don’t see a problem with your text color now. Specifically which text do you wish to change? That will help us tell you how to change it.