I would like to know what are the different classes you can use in the div macro. I have seen the home-banner class, is there any other class that i can use?
You can use pretty much everything in div macro as long as you know the underlying structure of how the pages are built which you can find out if you know HTML analysis by the browsers inspection/source mode.
You can look at the plugin vendor info as well for example for Adaptavists DIV macro: https://docs.adaptavist.com/cfm/confluence/server/latest/macros/div.html
Some example though since you asked
/* Control behavior of lefthand menu */
div[class*=
"pagetree_children_content"
] {
font-size
:
12px
}
/* Control behavior of Tables */
/* Sets that table is configured differently sorting row will not work otherwise */
.wiki-content Table {
font-size
:
1.0
em;
}
/* Sets one color on sorting rows in table */
.wiki-content Th {
background-color
:
rgb
(
100
,
149
,
237
)
!important
;
font-size
:
1.5
em
}
/* Sets one color on even rows in a table */
.wiki-content tr:nth-child(even) {
background-color
:
#CCCCCC
;
}
/* Sets one color on odd rows in a table */
.wiki-content tr:nth-child(odd) {
background-color
:
#FFFFFF
;
}
/* Hides the byline until hovered over*/
.page-metadata ul {
visibility
:
hidden
;
}
.page-metadata:hover ul {
visibility
:
visible
;
}
@vanessa.dsouzaFurther to Krister's response, above, you need to know that the DIV macro is deprecated in Confluence Cloud. Atlassian is actively moving users to the Fabric Editor, which replaces the "legacy" editor, and the DIV macro has been deliberately omitted from the Fabric Editor on the basis that users were allegedly messing up their pages.
That being said, if you are still using the legacy editor, you can also use the Class field to provide a hook for styling PDF exports of your pages (see Space Settings > Look and Feel > PDF Export Stylesheet).
Atlassian provides a link to its default export stylesheet, here: https://confluence.atlassian.com/download/attachments/190480945/confluencedefaultpdf.css?version=1&modificationDate=1243580667083&_ga=2.28092283.672528023.1573493163-1307364796.1573493163
By inserting content into a DIV, you can apply a class and modify it by including extra styling in your PDF-export stylesheet.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, totally correct with the depreciation which also applies to the Style Macro. I did not look at what version of Confluence we were discussing and though server (thus the server plugin) :-)
We actually moved to server because of these changes, although I can see the use for some users, the new easy use interface is way to limiting for us.
For your information Vanessa, here is the news post in regards to what will be taken away (which is a lot): https://confluence.atlassian.com/confcloud/we-re-cleaning-up-the-macro-browser-946028471.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And here is the Confluence Cloud roadmap: https://confluence.atlassian.com/confcloud/confluence-cloud-editor-roadmap-967314556.html
Sadly, it isn't entirely accurate. For example, it suggests that the Page Tree macro converts completely. In reality, the Page Tree macro displays a text-wrapping bug in the new editor.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your responses.
I am currently using the legacy editor and I do not have any access to Space Settings. I used the div class home-banner and liked the effect. What are the other classes that I can use for formatting my space?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are not going to have legacy much longer so i would not put more time into this., the things you created will most likely soon be gone as well.
If you need to change things i would suggest to go with one of the theme plugins such as refined: https://marketplace.atlassian.com/apps/1221322/refined-for-confluence-cloud?hosting=cloud&tab=overview
If you want to continue doing like you are now, you need to start looking at switching to server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.