Reputation: 37
i have wordpress installed, and am using all-in-one event calendar. What i need is when viewing event, i want the template to be full with. But now it shows some other template, like there is a sidebar, even if i show it only on homepage. Here is an example - http://veebimeedia.ee/seeder/ai1ec_event/event/?instance_id=13
I need events displayed in full width template. I have read that this plugin uses default posts template, but where i can change that? I have no single.php in my theme.
Any help?
Upvotes: 0
Views: 935
Reputation: 195
In your CSS around line 545 your have set:
#content { float: left; width: 595px; margin: 0; min-height: 180px; }
All elements width under #content will not be more then 595px width.
I would the template of the page to no sidebar. Or make a new template where you delete the sidebar, and make it say something else then #content. (example #content-full) and then set the CSS.
#content-full { float: left; width: 100%; margin: 0; min-height: 180px; }
But still it is hard to tell how the theme is built up.
Upvotes: 1
Reputation: 6089
Normally you set the full width template on the page not the post. Most themes have a template with no sidebars. If not you can make one by duplicating the page.php file, give it a new name and a template name and remove the sidebar call.
Upvotes: 0