zartgesotten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: No Sidebar on Home Page – Two Different Sites!!!John, I don’t know which file it is because I don’t see the php files.
It must be index.php or … my guess sidebar.php.
But I just don’t want to believe that the problem lies in your template file. Because usually that template should work fine.So before playing around with the code you should try to upload the theme from the other site (you haven’t linked that here) where you said it works.
Welcome!
AnjaForum: Themes and Templates
In reply to: No Sidebar on Home Page – Two Different Sites!!!Hello Johnsma.
I tried it out by downloading the page and playing with the divs.
Someting’s wrong.The Sidebar DIV sits INSIDE the Main Content DIV. That’s why it’s shown after the post content.
Did you change something in the theme? If you did, that might be the mistake.Try to put the div with the ID Sidebar and the class “secondary” AFTER the DIV that ends with
</div> <!-- /main content -->
That’s my best bet in this short amount of time. Or you could take the theme from the working page.
Good luck
wearitwellForum: Themes and Templates
In reply to: No Sidebar on Home Page – Two Different Sites!!!I don’t think it’s a style- or theme issue. It must have to do with the content of one of the more recent posts…
Please tell us how you are doing Johnsma ??Forum: Themes and Templates
In reply to: No Sidebar on Home Page – Two Different Sites!!!Please try to delete the most recent post. My guess would be that an element in the post (maybe the video) ist too large for the container.
If you click on one of the links for example https://growinginhisgrace.com/?p=22 your Layout is ok.So make the video smaller or delete it from your post and I think everything will be ok.
Cheers
wearitwellForum: Fixing WordPress
In reply to: Sub page problemI use the ClassyBody Plugin to display different Headers or styles … You only have to insert this piece of code into your template (for the body-tag)
<?php if(function_exists('classybody')) {?> <body class="<?php classybody(); ?>"> <?php } else { ?> <body> <?php } ?>
And in the page you want to display differently you add a custom field named classybody and give it a name.. e.g. “blue”
Then you only have to edit you style.css like that…
body.blue header{ color: #blue; other syles blah blah; }
This allows you to create as many different styles as you like!!!
Maybe this helps…
cheers
wearitwellForum: Plugins
In reply to: nextgen gallery single picture idSomething happened… double-post. Sorry!
Forum: Plugins
In reply to: nextgen gallery single picture idI don’t really understand your problem. You can’t upload a picture just like that. You always have to put it in SOME Gallery.
After you’ve done that you can see the ID if you go to “Manage Gallery” and see the list of thumbnails. It shows the ID right in the first column.You don’t have to write the above code into your posts, the use of the nextgen-Button to insert pictures is much easier so you don’t HAVE to know the ID of the picture.
Hope that helps
GreetingsForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Weird gaps in gallery viewYou’re welcome Raymond,
But remember to backup the files before updating the plugin ??
CheersForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Weird gaps in gallery viewWell. In the ngggallery.css (in plugin-subfolder css) you could put
height:yourheightpx;
into either one of these styles…
.ngg-gallery-thumbnail-box { float: left; } .ngg-gallery-thumbnail { float: left; margin-right: 5px; }
You’ll have to try what works for you. Problem is that you will have to remember what you did and it will only work if you keep the same size of thumbnails forever. This is not a very flexible solution which is why I stick with the other way.
Cheers
wearitwellForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Weird gaps in gallery viewHi there!
I have the same Problem:
View ImageI have already pinned it down to exactly what alex is saying. In my example, some of the Thumbnails are 200 x 121 pixels and some are 200 x 122. Even this difference of one pixel in height destroys the view.
If I put a fixed height to the .ngg-gallery-thumbnail style it works. Also if I Re-generate the Thumbnails with settings to fixed size.
So If in Options – Thumbnails you set the fixed size and ignore proportions, then regenerate thumbnails for your gallery it will work.
But I wish there was another way. This is hard to explain to my “customers” (my parents ;-))
Anyway… Alex.. I JUST LOVE your plugin! THANK YOU!
Forum: Plugins
In reply to: Sidebar different on different pages- how can I do this?Hi reptilegirrl,
I had a problem just like that a while ago, so I did this:
Used the Plugin “Widget Logic” which allows you to put code likeis page('linkpage')
in for every widget to just let it show on your linkpage for example.Also I downloaded the “Is Subpage of” Plugin which extends the Widget Logic so you can also write
is_subpage of('3')
and the widget will only be shown if it is a subpage of your page with the ID 3.VERY VERY helpful for displaying different content is this plugin: Contentboxen. It works like this: You can write anything into an article and put the article in the category “contentboxes”. This Category will not be shown in the loop. But all the articles in the contentboxes Category will appear under any page or article and you can choose by checkbox which contentbox you want to display in the sidebar of the article/page.
Hope you understand my English and I hope this helps you.
Cheers
wearitwell