in our main.vmd we have the following, which we've been using since 2.x - to put a banner across the top of the page, and links to some of our our other applications. What happens now is that when you edit a page, the bottom section of the edit page is missing. (savebar-container) So, no save, cancel, permission update, etc. It looks like its being pushed right out of the browser page. If I use developer tools, and search for savebar-container, click it, then change my resolution to 75% - I can see and use the save bar.
Any ideas would be greatly appreciated.
<html>
<head>
#if ($sitemeshPage.getProperty(page.spacename))
<title>$title - $sitemeshPage.getProperty(page.spacename) - #siteTitle()</title>
#else
<title>$title - #siteTitle()</title>
#end
#requireResource(confluence.web.resources:print-styles)
#requireResourcesForContext(main)
#requireResourcesForContext(atl.general)
#parse(/decorators/includes/header.vm)
$!settingsManager.globalSettings.customHtmlSettings.beforeHeadEnd
$!sitemeshPage.getProperty(page.canonical)
</head>
## HTML HEADER ENDS
## HTML BODY BEGINS
<body #onloadattr()="" id="com-atlassian-confluence" class="$!theme.bodyClass" $!sitemeshpage.getproperty(page.bodyclass)="">
#parse (/decorators/includes/main-content-includes.vm)
## Matrix Banner Start
## Matrix Banner End
$!settingsManager.globalSettings.customHtmlSettings.afterBodyStart
#displayGlobalMessages()
#parse($!theme.topNavLocation)
#if($sitemeshPage.getProperty(page.tree))
#set($sidebarSettings = $studioSidebarHelper.getSettings($spaceKey))
$!sitemeshPage.getProperty(page.theme-navigation)
#if ($!sidebarSettings.isTreeEnabled() == true)
$!sitemeshPage.getProperty(page.tree)
#end
## script needs to be executed here to prevent jerky content
#includePluginJavascript(com.atlassian.confluence.plugins.doctheme:resources, doc-theme.js)
##if ($!sitemeshPage.getProperty(page.theme-header))
## $!sitemeshPage.getProperty(page.theme-header)
##end
#end
## CONTENT DIV BEGINS
#set ($showPersonalSidebar = ($sitemeshPage.getProperty(page.personal-sidebar) || $sitemeshPage.getProperty(page.show-personal-sidebar)))
#if($showPersonalSidebar)
#set ($personalClass = has-personal-sidebar)
#elseif($sitemeshPage.getProperty(page.sidebar))
#set ($personalClass = has-sidebar)
#elseif($sitemeshPage.getProperty(page.blog-sidebar))
#set ($personalClass = has-blog-sidebar)
#end
$!sitemeshPage.getProperty(page.content-navigation)
$!sitemeshPage.getProperty(global.dashboard-navigation)
#if ($sitemeshPage.getProperty(page.username))
#set ($tildeUsername = ~$username)
#logoBlock($tildeUsername)
#else
#logoBlock($spaceKey)
#end
#if ($sitemeshPage.getProperty(page.title-text-span))
$sitemeshPage.getProperty(page.title-text-span)
#else
#pageTitleLink()
#end
$!sitemeshPage.getProperty(page.tab-navigation)
#if($showPersonalSidebar)
#if ($sitemeshPage.getProperty(page.personal-sidebar))
#skiplink(sidebar $i18n.getText(assistive.skiplink.to.sidebar.start) $i18n.getText(assistive.skiplink.to.sidebar.end))
$sitemeshPage.getProperty(page.personal-sidebar)
#end
#end
#else
#if ($sitemeshPage.getProperty(page.blog-sidebar))
#skiplink(sidebar $i18n.getText(assistive.skiplink.to.sidebar.start) $i18n.getText(assistive.skiplink.to.sidebar.end))
$!sitemeshPage.getProperty(page.blog-sidebar)
#end
#end
#if ($sitemeshPage.getProperty(page.sidebar))
#skiplink(sidebar $i18n.getText(assistive.skiplink.to.sidebar.start) $i18n.getText(assistive.skiplink.to.sidebar.end))
$!sitemeshPage.getProperty(page.sidebar)
#end
#end
#end
$body
## CONTENT DIV ENDS
#if($sitemeshPage.getProperty(page.tree))
$!sitemeshPage.getProperty(page.theme-footer)
#end
#webPanelForLocation(atl.footer $action.context)
$!sitemeshPage.getProperty(page.coherence-copyright)
</body>
##Matrix Style Sheets Start
<link rel="stylesheet" href="$req.contextPath/includes/css/style_wiki.css" type="text/css"/>
##Matrix Style Sheets End
</html>
Found the answer to this on this site at:
https://answers.atlassian.com/questions/18316/custom-css-unable-to-use-all-of-edit-box-once-applied
just needed to search differently.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.