pulls the header out of the content div which makes the headings smaller in the content view with a specific css

This commit is contained in:
SimonGschnell
2024-07-24 14:57:11 +02:00
parent e9d45b6532
commit 012cbe9a25
3 changed files with 3 additions and 7 deletions
+1 -2
View File
@@ -18,9 +18,8 @@ $this->load->view('templates/CISVUE-Header', $includesArray);
?>
<h2 ><?php echo isset($content_id)? "Content" : "News" ?></h2>
<div id="cms">
<h2><?php echo isset($content_id)? "Content" : "News" ?></h2>
<?php echo (isset($content_id) ? '<cms-content :content_id="'.$content_id.'" :version="'.$version.'" :sprache="'.$sprache.'" :sichtbar="'.$sichtbar.'" />' : '<cms-news/>'); ?>
</div>
+1 -3
View File
@@ -17,10 +17,8 @@ switch($template_kurzbz){
$this->load->view('templates/CISVUE-Header', $includesArray);
?>
<div id="cms">
<h2><?php echo isset($content_id)? "Content" : "News" ?></h2>
<div id="cms">
<?php echo (isset($content_id) ? '<cms-content :content_id="'.$content_id.'" :version="'.$version.'" :sprache="'.$sprache.'" :sichtbar="'.$sichtbar.'" />' : '<cms-news/>'); ?>
</div>
+1 -2
View File
@@ -18,9 +18,8 @@ $this->load->view('templates/CISVUE-Header', $includesArray);
?>
<h2 ><?php echo isset($content_id)? "Content" : "News" ?></h2>
<div id="cms">
<h2><?php echo isset($content_id)? "Content" : "News" ?></h2>
<?php echo (isset($content_id) ? '<cms-content :content_id="'.$content_id.'" :version="'.$version.'" :sprache="'.$sprache.'" :sichtbar="'.$sichtbar.'" />' : '<cms-news/>'); ?>
</div>