bensima
Forum Replies Created
-
The fix:
go to http://yoursite.com/wordpress/wp-admin/options.php
scroll down until you fine upload_path (on the left-hand side)
make sure the entire path is correct. If it isn’t then change it and save.
Now it should be fixed.
Forum: Everything else WordPress
In reply to: RSS feed & email/SMS notification for new WP releasesThanks. I like it.
Forum: Themes and Templates
In reply to: Z-index and background imagesYou’re right, it works beautifully. With Sandbox’s dynamic post-category classes and
display:none;, I can code each post to have a specific tab that corresponds to the category by loading all of the tabs, then only displaying the one I want. Not sure if this is the best way to do it, but it works. I’m sure I could use some php function but that would require learning some more php. I’ll save that for a rainy day.Thanks for the help =)
Forum: Themes and Templates
In reply to: Img Link border is really annoyingActually, I found the fix. I had a border on one of the divs it was in that I must have overlooked. I was thinking the link was causing it since it would only show up when I added the link. Thanks though.
Forum: Themes and Templates
In reply to: Img Link border is really annoyingI didn’t mention at first that the
<a href="#">tag is the one that is causing the problem. Since the image overlaps three different colors, the attributecolor:#fff;can’t be used. Also,color:transparent;doesn’t work for whatever reason. I’ve been looking for a fix for this for two hours since I first posted this and I haven’t found anything.*bump*
Forum: Themes and Templates
In reply to: serious problem with my css…need help fixing…!!Didn’t see your reply there…
I’m not much of a CSS wiz myself, so I can’t help you with that. Try searching google for CSS opmtimization forums. You could find more help there, as this forum is just for WP problems.
Your welcome. π
Forum: Themes and Templates
In reply to: serious problem with my css…need help fixing…!!…I think
word-wrap:break-word;is an IE specific fix anyway. From what I know, it will remove the vertical scrollbar. I’m not sure though since I don’t even have IE installed on this machine. :-/Forum: Themes and Templates
In reply to: serious problem with my css…need help fixing…!!I didn’t even notice the scrollbar at first…
To get rid of it change
overflow:auto;tooverflow:hidden;and addword-wrap:break-word;to#contentbut I’m not sure if word-wrap works. It didn’t for me. However, since that test post is one long word without spaces, you probably don’t have to worry since regular text will wrap. Try adding some fake lorem ipsum text.To get rid of the space above the sidebar, change
#page‘s margin tomargin:0px;Forum: Themes and Templates
In reply to: serious problem with my css…need help fixing…!!Using the Firefox extension “Firebug” (which you should get if you don’t have) I found that:
1. You need to remove
margin-left:570px;from#sidebarin style.css. This is not needed since you havefloat:right;2. Add
overflow:auto;to#contentin style.css. This will fix the long text that gets hidden by the sidebar.That should fix it. Let me know if it works.
Forum: Themes and Templates
In reply to: upload themejust FTP the theme files into wp-content/themes and log in to your admin control panel. Click on the Design or Presentation tab, depending on what version of WP you use, and the theme should show up for you to use.
Unless your on the freely hosted WordPress.com, then I believe you have to pay to upload your own theme or else just use the available themes in the gallery.
Forum: Themes and Templates
In reply to: Best Theme Making Tutorials? Your Opinion?I was just reading about the loop this morning and I realized this is how people make asides and featured articles, right? I’ve always thought it would be cool to make a blog with two authors, one on each side of the page, and from the looks of it this could be achieved with the loop?
I’m starting to see why WordPress is so popular.
Forum: Themes and Templates
In reply to: Best Theme Making Tutorials? Your Opinion?that was a quick response. thanks
yeah, I started to read thru the codex, but got sidetracked with experimenting in the sandbox theme that I’m starting with. I know exactly what I want from my theme, I just don’t quite understand the translation from Blogger to WP yet. I guess I’m hoping for something that translates the functions and structure of Blogger to WP easily, since I already know Blogger.