Thanks in Advance.. OMG! Here I go again.. all I'm trying to do is fix errors myself and then I can't. I am using Privilege, trying to figure out why one of my pages triplicates my module. I searched the different css files to see if I could see code appearing 3x.
Tried editing file "/html/modules.php" in template "j51_privilege".
I copied & pasted code in a word doc so just in case it did not work I could put it back. When I put it back.. the page will not load and I get this error?
Parse error: syntax error, unexpected end of file in /home/april-/public_html/templates/j51_privilege/php/styles.php on line 186
Without pasting all the code.. I'm starting at Line 110 -hoping its enough for you to analyze. Last line is 186 </style> is the issue.
/*Style Side Column A, Side Column B and Content Divs layout*/
<?php if($this->params->get('column_layout') == 'SCOLA-SCOLB-COM') : ?>
#sidecol_a {float:left;}
#sidecol_b {float:left;}
#content_remainder {float:left;}
/* Override Update */
.img-fulltext-left {
float: left;
margin-top: 10px;
margin-bottom: 20px;
margin-right: 20px;
}
.img-intro-left {
float: left;
margin-top: 0px;
margin-bottom: 10px;
margin-right: 10px;
}
/*--Load Custom Css Styling--*/
<?php echo ($custom_css); ?>
/* Wrapper Width */
.wrapper960, #header_items {width: <?php echo ($wrapper_width); ?>px ;}
/* Responsive Options */
<?php if($res_top1_sw != "1"

@media only screen and ( max-width: 767px ) {
#container_slideshow_modules {display:none;}
}
<?php endif; ?>
<?php if($res_top2_sw != "1"

@media only screen and ( max-width: 767px ) {
#container_top_modules {display:none;}
}
<?php endif; ?>
<?php if($res_top3_sw != "1"

@media only screen and ( max-width: 767px ) {
#container_top3_modules {display:none;}
}
<?php endif; ?>
<?php if($res_sidecola_sw != "1"

@media only screen and ( max-width: 767px ) {
#sidecol_a {display:none;}
}
<?php endif; ?>
<?php if($res_sidecolb_sw != "1"

@media only screen and ( max-width: 767px ) {
#sidecol_b {display:none;}
}
<?php endif; ?>
<?php if($res_bottom_sw != "1"

@media only screen and ( max-width: 767px ) {
#container_bottom_modules {display:none;}
}
<?php endif; ?>
<?php if($res_base_sw != "1"

@media only screen and ( max-width: 767px ) {
#container_base #base.block_holder {display:none;}
}
<?php endif; ?>
/*-- Background Image --*/
<?php if($this->params->get('bgimagefile') != '') : ?>
body {background: url(<?php echo $this->baseurl ?>/<?php echo $bgimagefile; ?>

<?php endif; ?>
</style>