Difference between revisions of "System Settings - Module menu appearance"

From All n One's bxp software Wixi

Jump to: navigation, search
(Created page with "= Overview = With the release of bxp Release 10 SER 2 the menu system for a module is an option which can be chosen. There are three choices * Classic * Accordion * Menu...")
 
(Accordion)
Line 21: Line 21:
 
[[File:module menu choices 002.png|800px]]
 
[[File:module menu choices 002.png|800px]]
  
 +
 +
The style of the menu can be overwritten with
 +
 +
<syntaxhighlight lang="css">
 +
/************************************************
 +
************************************************/
 +
.cssMenu_Header {
 +
 +
}
 +
.cssMenu_Header_TD {
 +
    color : #ffffff;
 +
    text-align : left;
 +
font-size:16px;
 +
}
 +
.cssMenu_Header_TD a{
 +
    color : #ffffff;
 +
    text-decoration : underline;
 +
font-size:16px;
 +
}
 +
.cssMenu_Header_TD a:hover{
 +
    color : #ff0000;
 +
}
 +
.cssMenu_Header_TD a:visited{
 +
    color : #ffffff;
 +
}
 +
.cssSectionMenu_Text {
 +
 +
}
 +
.cssModule_Menu_Div{
 +
}
 +
.csseCourse_Menu_Title {
 +
    color : #ffffff;
 +
    text-align : left;
 +
font-size:16px;
 +
}
 +
.cssContentBody{
 +
width:99%;
 +
    border: 1px solid #042103;
 +
border-spacing:2px;
 +
border-color:#042103;
 +
color:#042103;
 +
 +
background:#ffffff;
 +
background-color:#ffffff;
 +
 +
padding: 5px;
 +
padding-left: 7px;
 +
border-radius: 15px;
 +
-moz-border-radius: 15px;
 +
-webkit-border-radius: 15px;
 +
-khtml-border-radius: 15px;
 +
-o-border-radius: 15px;
 +
overflow: hidden;
 +
-pie-track-active: false;
 +
-pie-track-hover: false;
 +
}
 +
</syntaxhighlight>
  
 
= Menu Buttons =
 
= Menu Buttons =

Revision as of 18:11, 25 February 2018

1 Overview

With the release of bxp Release 10 SER 2 the menu system for a module is an option which can be chosen.


There are three choices

  • Classic
  • Accordion
  • Menu Buttons


2 Classic

module menu choices 001.png


3 Accordion

module menu choices 002.png


The style of the menu can be overwritten with

/************************************************
************************************************/
.cssMenu_Header {

}
.cssMenu_Header_TD {
    color : #ffffff;
    text-align : left;
	font-size:16px;
}
.cssMenu_Header_TD a{
    color : #ffffff;
    text-decoration : underline;
	font-size:16px;
}
.cssMenu_Header_TD a:hover{
    color : #ff0000;
}
.cssMenu_Header_TD a:visited{
    color : #ffffff;
}
.cssSectionMenu_Text {

}
.cssModule_Menu_Div{
}
.csseCourse_Menu_Title {
    color : #ffffff;
    text-align : left;
	font-size:16px;
}
.cssContentBody{
	width:99%;
    border: 1px solid #042103;
	border-spacing:2px;
	border-color:#042103;
	color:#042103;
	
	background:#ffffff;
	background-color:#ffffff;
	
	padding: 5px;
	padding-left: 7px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	-khtml-border-radius: 15px; 
	-o-border-radius: 15px;
	overflow: hidden; 
	-pie-track-active: false;
	-pie-track-hover: false;
}

4 Menu Buttons

module menu choices 003.png