Kabi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: images return 404 even though path is correctHave you checked the rights to your “uploads” folder?
Forum: Fixing WordPress
In reply to: images return 404 even though path is correctWell, on that site does seem corrupted to me. Again, try to upload a different image to be sure if it happens again.
Forum: Fixing WordPress
In reply to: images return 404 even though path is correctI can open this one:( http://www.seqmedia.com/projects/railsbridge/workshops/rb_wrkshp_mini_logo.png )
Forum: Fixing WordPress
In reply to: images return 404 even though path is correctI’ve downloaded the image, but had trouble to open it in Photoshop. Is your image file ok? Have you tried to upload a different image?
Also check if you have the correct rights to your folder. (at least Read and Execute)Forum: Themes and Templates
In reply to: Greyzed theme: Large space of nothing at the bottom.Best to create a footer.php in your child theme, and remove all the unnecessary entries, and add your own link. I would leave some back link for the Theme developer for the credit.
Forum: Fixing WordPress
In reply to: Hiya! New to wordpress and have a few questionsput the following lines below in the style.css you’ve created under your child theme. Make sure the child theme is the active theme.
.socialfooter,
.blogroll-foot,
.recent-foot {
visibility: hidden;
}Forum: Themes and Templates
In reply to: [Thematic] Changing fonts in Thematic?Best to use pt or em unit for font size instead of px.
Forum: Fixing WordPress
In reply to: Hiya! New to wordpress and have a few questionsJust send a test post. Blog Roll, etc should go in the footer area afterwards.
You can modify the style.css alternatively by setting the .”socialfooter”, “.blogroll-foot”, “.recent-foot” class “visibility: hidden;”
Check the documentation how to use child themes: http://codex.wordpress.org/Child_Themes
Forum: Fixing WordPress
In reply to: Hiya! New to wordpress and have a few questionsIsn’t it just a footer widget. Check under Appearance | Widget menu
They should be under the Footer Middle, Footer Right widget.If not you better create a child-theme, and modify the stylesheet slightly.
Not as daunting as it sounds. 🙂
Forum: Fixing WordPress
In reply to: Changing widths?I guess it’s worked then. 😉
Forum: Fixing WordPress
In reply to: What is a slug?Recommended reading before starting on WordPress: http://codex.wordpress.org/Writing_Posts
😉
Forum: Fixing WordPress
In reply to: images disappearing on my websiteCan you confirm that the images are still in the Upload folder? Or has been deleted from there as well?
Forum: Fixing WordPress
In reply to: How do you shorten blog post displayed?I personally using the Excerpt editor plugin. (http://www.laptoptips.ca/projects/wordpress-excerpt-editor/)
Does what it says. You can also turn your posts into excerpts just what you are looking for.
Also useful for RSS feed descriptions.See my website as an example. 🙂
Forum: Fixing WordPress
In reply to: Changing widths?I meant you tell you, add to your child theme’s stylesheet (/wp-content/themes/thematic-child/style.css), don’t modify the original files.
🙂Forum: Fixing WordPress
In reply to: Changing widths?Hi,
Try this!
edit the following stylesheet:
wp-content/themes/thematic/library/layouts/2c-r-fixed.cssFind the “#container” line, and modify the “width: ” element.
Also the “#content” line specifies the width of the posts inside the “#container”.This will modifies the size of your main content, where your blog appears.
For the side bar width; find the “.main-aside” entry and modify the “width: ” element again.
The “#main” entry includes the “#container” + “.main-aside”.