akerbak
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme Bombax] Resize Sidebar QuestionHi 🙂
What theme are you using, and by resize do you mean fix the width of the sidebar?
If you are using the default WordPress theme (Twenty Eleven), you should edit the style.css-file of the theme, where the #primary-div is the container of the first right hand sidebar, and the #secondary-div is the second.
If you are enlarging them, then make sure you are not making them so big that they conflict with the content column 🙂
Hope that helps!
Forum: Themes and Templates
In reply to: Calling all WordPress ExpertsThe cross-browser supported way of doing this would probably to have the carbon fiber background as the background image repeating in the body-tag.
Then, place a div of 100% height and width as the first element in your html, where you put the large image as a background image positioned top and center. Then this image would place above the carbon fiber pattern, and it would float accordingly to browser width.
Sample code for CSS:
body { background: #fff url(images/carbon-fiber.png) top left; } div#large-image { width: 100%; height: 100%; background: transparent url(images/large-image.png) top center no-repeat; }Change paths to images accordingly.
Sample code for HTML:
<html> <head><!-- all your header stuff here --></head> <body> <div id="large-image"> <!-- all your site's structure and content here --> </div><!-- end #large-image --> </body> </html>Hope this helps 🙂
Which did the trick… You’re a lifesaver, thank you 🙂
Forum: Fixing WordPress
In reply to: Picture not showing up on my site!If he has a sollution easy to explain, would you mind sharing this? I’m having kind of similar problems with images not showing in posts, so if there exists an easy sollution I would be thrilled to know 😉
Good thing you got it figured out!
Forum: Fixing WordPress
In reply to: Broken images when publishedNo plugins at all, a completely fresh new installation without any plugins installed (or activated from the two implemented in the basic installation.
I’ve only switched between editors to explore this problem, basically. Try to stick with the visual, since this is the editor most of our clients are using. But – even when not switching between editors the above mentioned HTML output change occur.
Forum: Fixing WordPress
In reply to: Broken images when publishedI have the exact same problem, but doesn’t have the events calendar plugin installed…
When publishing an article, I get a bunch of "s in the source code, replacing the image url.
When inserting an image into a post, I get the following code:
<a href="http://odin-media.net/marius/wp3test/wp-content/uploads/2010/08/pp-logo.jpg"><img class="alignleft size-full wp-image-11" title="pp-logo" src="http://odin-media.net/marius/wp3test/wp-content/uploads/2010/08/pp-logo.jpg" alt="" width="200" height="287" /></a>but then I press the “publish”-button, and by magic, the HTML output is
<a href=\"http://odin-media.net/marius/wp3test/wp-content/uploads/2010/08/pp-logo.jpg\"><img class=\"alignleft size-full wp-image-11\" title=\"pp-logo\" src=\"http://odin-media.net/marius/wp3test/wp-content/uploads/2010/08/pp-logo.jpg\" alt=\"\" width=\"200\" height=\"287\" /></a>Please note that this is when having HTML-view activated. If I go to VISUAL-view, and press the “publish” (or now “update”)-button, the HTML output for the image is
<a href="\"><img class="\"\\"alignleft\"" title="\"\\"pp-logo\\"\"" src="\" alt="\"\\"\\"\"" width="\"\\"200\\"\"" height="\"\\"287\\"\"" /></a>Does anyone have an idea on where I can fix this? I assume there is a function printing or converting the URLs that must be fixed? any help is much appreciated!