Developing a website and ran into a puzzle.
I started this project about 3 years ago but the past couple years it has been dormant. I restarted working the site recently, redesign and adding content, and updated T3 and Joomla before getting back to the editing.
I am having one single issue on a single page out of about 25 created. I have a background image I added inline via CSS to have a specific background image for that single page. The problem is I can't remember how or where I added the inline css and therefore can't access it.
This is what my source is looking like on the pages without the inline CSS:
<section class="article-content clearfix">
*********************article content**************************
</section>
On the page I want to remove the background, the inline appears as this in the page source:
<section class="article-content clearfix">
<style type="text/css">
.t3-wrapper {
/font-family: aftasansregular;/
background: url("http://texaswildcat.us/site/images/American-Flag1.jpg") no-repeat fixed left top;
}
</style>
********************article content***************************
</section>
When I view the source code in the editor, article content is visible but not the inline style.
Normally inline is added in a specific file or within the article content rather than within the CSS files which I do for limited specific customizations for a single page. In this case, I have no idea where or how to get to this inline text to remove it. I've gone through all the php files, ini files, xml, etc, that I can think I may have edited at any given time when I created the site, but am stuck with nothing but a puzzle....
Any ideas????