Customize images in the header area
Change fonts and colors
Open the file bootstrap.css in the directory fileadmin/jweilandnet_musterprojekt/Resources/Css/
The font used and the font color are defined from line 302.
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1em;
line-height: 1.428571429;
color: #333333;
background-color: #ffffff;
}Highlight content elements in color
The colors of the two boxes can be changed using CSS. In the file musterprojekt_styles.css you will find the corresponding definitions for the classes .csc-frame-frame1 and.csc-frame-frame2from line 285 onwards
.csc-frame-frame1 {
background-color: #f5f5f5;
padding: 1.5em;
margin-bottom: 1.5em; }
.layout2 .csc-frame-frame1 {min-height: 20em;}
.csc-frame-frame2 {
background-color: #414141;
padding: 1.5em;
margin-bottom: 1.5em;
color: #fff;
}
Note on image sizes in content elements
In order to standardize the display of images in the layout and to facilitate the correct display in a responsive layout, the fields for specifying the width and height of the images have been deactivated in the "Text & image" and "Images" content elements.
You can reactivate these fields by setting the values to 0 in the following lines in the file fileadmin/jweilandnet_musterprojekt/Resources/TSConfig/page.tsconfig.ts:
## Content Elements: remove width and height fields for images
TCEFORM.tt_content {
imagewidth.disabled = 1
imageheight.disabled = 1
}
However, this change may require adjustments to the CSS files.
This page contains automatically translated content.











