Codes showing up on page

Permalink
I somehow have managed to get some code to be visible on one of my pages. I have attached screenshots form my mobile as well as my desktop. I have not identified any code on the page with similar language.

Thank you for nay help with this.

2 Attachments

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You have an extra </style> in the middle of your css code and an extra closing curly bracket that looks like this
<style type="text/css"> 
#areaStyleSidebar27 {background-repeat:no-repeat; <style type='text/css'>.classname {   -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;   -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;   box-shadow:inset 0px 1px 0px 0px #ffffff;   background-color:#ededed;   -moz-border-radius:6px;   -webkit-border-radius:6px;   border-radius:6px;   border:1px solid #dcdcdc;   display:inline-block;   color:#474747;   font-family:arial;   font-size:15px;   font-weight:bold;   padding:6px 24px;   text-decoration:none;   text-shadow:1px 1px 0px #ffffff;}.classname:hover {   background-color:#dfdfdf;}.classname:active {   position:relative;   top:1px;}/* This imageless css button was generated by CSSButtonGenerator.com */</style>} 
#blockStyle85Main21 {background-repeat:no-repeat; border-bottom:3px outset #4a4a4a; } 
#blockStyle99Main22 {font-family:Arial, Helvetica, sans-serif; background-repeat:no-repeat; } 
</style>


Try it like this
<style type="text/css"> 
#areaStyleSidebar27 {
   background-repeat:no-repeat }
.classname {
      -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
      -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
      box-shadow:inset 0px 1px 0px 0px #ffffff;
      background-color:#ededed;
      -moz-border-radius:6px;
      -webkit-border-radius:6px;
      border-radius:6px;
      border:1px solid #dcdcdc;
      display:inline-block;
      color:#474747;
      font-family:arial;
ianmoore replied on at Permalink Reply
Thank you for your reply. I am unable to find the code that
starts with areaStyleSidebar27.

Any thoughts? I am using an add on form Firefox that allows me to
view the CSSS code of the page.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
A clue is given in the comments in the generated css code, (CSSButtons.com)
It could well be a part of the Theme you are using,
Or, From some "Extra Header Content" in your 'Appointments' page.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Here is some of the source code from your 'Appointments' page showing the faulty css code
<link rel="stylesheet" type="text/css" href="/concrete/css/ccm.base.css?v=a69f063ac588269bf6d761c65c252239" />
<script type="text/javascript" src="/concrete/js/jquery.js?v=a69f063ac588269bf6d761c65c252239"></script>
<script type="text/javascript" src="/concrete/js/ccm.base.js?v=a69f063ac588269bf6d761c65c252239"></script>
<style type="text/css"> 
#areaStyleSidebar27 {background-repeat:no-repeat; <style type='text/css'>.classname {   -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;   -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;   box-shadow:inset 0px 1px 0px 0px #ffffff;   background-color:#ededed;   -moz-border-radius:6px;   -webkit-border-radius:6px;   border-radius:6px;   border:1px solid #dcdcdc;   display:inline-block;   color:#474747;   font-family:arial;   font-size:15px;   font-weight:bold;   padding:6px 24px;   text-decoration:none;   text-shadow:1px 1px 0px #ffffff;}.classname:hover {   background-color:#dfdfdf;}.classname:active {   position:relative;   top:1px;}/* This imageless css button was generated by CSSButtonGenerator.com */</style>} 
#blockStyle85Main21 {background-repeat:no-repeat; border-bottom:3px outset #4a4a4a; } 
#blockStyle99Main22 {font-family:Arial, Helvetica, sans-serif; background-repeat:no-repeat; } 
</style>
<!-- End Concrete Header -->

This code is generated by "header_required.php" which is part of the concrete core.