Finding embedded CSS in PHP CMS Site
Finding embedded CSS in PHP CMS Site
am 30.11.2007 01:26:09 von wayne
I have an active site which prints recipes larger than I want. I want
the text to print as 10 px, but cannot get it to print anything but 12 px.
While trying to troubleshoot, I found an embedded CSS style - body, td,
th { font-size: 12px !important; }
Apparently it is embedded in about:blank, but I cannot find where it is
located on the site or in my browser. I use Firefox.
I have looked all of the files on the server than I can find. The site
is glenmeadows.us.
Anyone have a solution?
Thank you,
--
Wayne
www.glenmeadows.us
"Faith means not wanting to know what is true." [Nietzsche]
Re: Finding embedded CSS in PHP CMS Site
am 30.11.2007 02:15:16 von Jerry Stuckle
wayne wrote:
> I have an active site which prints recipes larger than I want. I want
> the text to print as 10 px, but cannot get it to print anything but 12 px.
>
> While trying to troubleshoot, I found an embedded CSS style - body, td,
> th { font-size: 12px !important; }
>
> Apparently it is embedded in about:blank, but I cannot find where it is
> located on the site or in my browser. I use Firefox.
>
> I have looked all of the files on the server than I can find. The site
> is glenmeadows.us.
>
> Anyone have a solution?
>
> Thank you,
>
This has nothing to do with PHP. Try alt.html or
comp.infosystems.www.authoring.stylesheets/
And it's never good to specify font sizes in px.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Finding embedded CSS in PHP CMS Site
am 30.11.2007 02:28:35 von wayne
Jerry Stuckle wrote:
> wayne wrote:
>> I have an active site which prints recipes larger than I want. I want
>> the text to print as 10 px, but cannot get it to print anything but 12
>> px.
>>
>> While trying to troubleshoot, I found an embedded CSS style - body,
>> td, th { font-size: 12px !important; }
>>
>> Apparently it is embedded in about:blank, but I cannot find where it
>> is located on the site or in my browser. I use Firefox.
>>
>> I have looked all of the files on the server than I can find. The site
>> is glenmeadows.us.
>>
>> Anyone have a solution?
>>
>> Thank you,
>>
>
> This has nothing to do with PHP. Try alt.html or
> comp.infosystems.www.authoring.stylesheets/
>
> And it's never good to specify font sizes in px.
>
This is a php generated site. It is NOT in any visible html.
Still not php related?
--
Wayne
www.glenmeadows.us
"Faith means not wanting to know what is true." [Nietzsche]
Re: Finding embedded CSS in PHP CMS Site
am 30.11.2007 02:48:39 von Jerry Stuckle
wayne wrote:
> Jerry Stuckle wrote:
>> wayne wrote:
>>> I have an active site which prints recipes larger than I want. I
>>> want the text to print as 10 px, but cannot get it to print anything
>>> but 12 px.
>>>
>>> While trying to troubleshoot, I found an embedded CSS style - body,
>>> td, th { font-size: 12px !important; }
>>>
>>> Apparently it is embedded in about:blank, but I cannot find where it
>>> is located on the site or in my browser. I use Firefox.
>>>
>>> I have looked all of the files on the server than I can find. The
>>> site is glenmeadows.us.
>>>
>>> Anyone have a solution?
>>>
>>> Thank you,
>>>
>>
>> This has nothing to do with PHP. Try alt.html or
>> comp.infosystems.www.authoring.stylesheets/
>>
>> And it's never good to specify font sizes in px.
>>
>
> This is a php generated site. It is NOT in any visible html.
> Still not php related?
>
What is the PHP code which causes you a problem?
Linux is written C. So that means any Linux questions are appropriate
for a C programming newsgroup?
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Re: Finding embedded CSS in PHP CMS Site
am 30.11.2007 09:24:52 von zbiskup
"wayne" wrote in message
news:13kum52eusivtdf@corp.supernews.com...
>I have an active site which prints recipes larger than I want. I want the
>text to print as 10 px, but cannot get it to print anything but 12 px.
>
> While trying to troubleshoot, I found an embedded CSS style - body, td, th
> { font-size: 12px !important; }
>
> Apparently it is embedded in about:blank, but I cannot find where it is
> located on the site or in my browser. I use Firefox.
>
> I have looked all of the files on the server than I can find. The site is
> glenmeadows.us.
>
> Anyone have a solution?
Yes : http://glenmeadows.us/themes/CSSSimple/style.css
This is where you probably must change font-size property in .defaultContent
Bye
Re: Finding embedded CSS in PHP CMS Site
am 30.11.2007 13:13:01 von wayne
Zvonko BiĀ¹kup wrote:
> "wayne" wrote in message
> news:13kum52eusivtdf@corp.supernews.com...
>> I have an active site which prints recipes larger than I want. I want the
>> text to print as 10 px, but cannot get it to print anything but 12 px.
>>
>> While trying to troubleshoot, I found an embedded CSS style - body, td, th
>> { font-size: 12px !important; }
>>
>> Apparently it is embedded in about:blank, but I cannot find where it is
>> located on the site or in my browser. I use Firefox.
>>
>> I have looked all of the files on the server than I can find. The site is
>> glenmeadows.us.
>>
>> Anyone have a solution?
>
> Yes : http://glenmeadows.us/themes/CSSSimple/style.css
>
> This is where you probably must change font-size property in .defaultContent
>
> Bye
>
>
Thank you for taking the time to respond, but the content of that
section is different (.defaultContent {
color: #333333;
background-color: #FFFCEA;
border: 1px groove #000000;
padding-bottom: 5px;
float: none;
position: relative;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
padding-right: 4px;
padding-left: 4px;) from the content shown when I use the Firefox
plugins to edit the CSS. When using "View CSS" I receive a screen which
points to the address and then "Edit CSS" returns the embedded CSS
(body, td, th { font-size: 12px !important; }) which I cannot find.
--
Wayne
www.glenmeadows.us
"Faith means not wanting to know what is true." [Nietzsche]