Advanced Web Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsWeb DesignAdvanced Web Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old March 21st, 2004, 08:12 PM
scottd2k4 scottd2k4 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Posts: 2 scottd2k4 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question Css + Php ?!? Help Me

how do i insert a css file into a php file ?!?


EDIT : Also i would like to know how to set the background colour ?!?

Reply With Quote
  #2  
Old March 21st, 2004, 11:10 PM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 14 m 33 sec
Reputation Power: 10
Send a message via ICQ to stumpy Send a message via MSN to stumpy
There are thousand of tutorials on how to do this. Google first, unless you are experiencing a particular problem, in which case we should be able to help you out.

Reply With Quote
  #3  
Old March 22nd, 2004, 08:56 AM
scottd2k4 scottd2k4 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Posts: 2 scottd2k4 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Exclamation Update

ok, i have searched google and the only things i have found are drop downboxes, all i want is to know how to insert a css sheet into a php file, please help me

Reply With Quote
  #4  
Old March 22nd, 2004, 11:29 AM
dhouston's Avatar
dhouston dhouston is offline
Contributing User
Dev Articles Beginner (1000 - 1499 posts)
 
Join Date: May 2003
Location: Tennessee
Posts: 1,355 dhouston User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to dhouston
You need more than google, actually. This is a basic CSS/HTML question (you include a CSS file into PHP the same way you would HTML. If you don't know the answer to something as fundamental as this, you really need to start with a very basic tutorial that'll get you up to speed on basic concepts in Web work. I propose devguru.com as a superb starting point. You'll find the answer to your question on the first page of their CSS tutorial. You'll also find out there how to add a background.
__________________
Please don't PM me asking for solutions outside the scope of a thread.
Keeping all responses in a thread stands to help others who come along later,
which is after all what this forum's all about.

Reply With Quote
  #6  
Old March 22nd, 2004, 10:50 PM
8networks.com 8networks.com is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Posts: 1 8networks.com User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
You can start by adding this line to your html portion of your php file:

<head>
......

<link type="text/css" rel="stylesheet" href="test_css.css" />

.....

</head>


Nathan Hall
URL
8Networks, Inc.
__________________
Network and information systems design, service, and management.

Reply With Quote
  #7  
Old April 11th, 2004, 08:22 AM
Erniefrontier Erniefrontier is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Posts: 12 Erniefrontier User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Same kind of prob????

I include my CSS file in a function that creates a header for every HTML page. All was working fine it reformatting the text changing the colour. But knoow it has just stopped changing the size of the text, which is seriously mucking up the layout.

function do_html_header($title = '')
{
global $total_price;
global $items;
if(!$items) $items = "0";
if(!$total_price) $total_price = "0.00";

?>
<html>
<head>
<title><?=$title?></title>
<link rel="STYLESHEET" type="text/css" href="style1.css">
</head>
<body>3
<table width=100% border=0 cellspacing = 0>
<tr>
<td rowspan = 2>
<a href = "main.php"><img src="images/shack_title.jpg" alt="DVD Shack" border=0
align=left height = 90 width = 400></a>
</td>
<td height="44" align = right valign = bottom>
<?
echo "Total Items = $items";
?>
</td>
<td align = right rowspan = 2 width = 75>
<?
display_button("show_cart.php", "view_cart", "View Your Shopping Cart");
?>
</tr>
<tr>
<td align = right valign = top>
<?
echo "Total Price = $".number_format($total_price,2);
?>
</td>
</tr>
</table>
<?
if($title)
do_html_heading($title);
}

I have looked at all the examples on this site and many more but I still can't find a solution to this problem.

Anyone no why it would stop reformating the text size??????

Many Thanks

Ernie.

Reply With Quote
  #8  
Old April 11th, 2004, 07:10 PM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 14 m 33 sec
Reputation Power: 10
Send a message via ICQ to stumpy Send a message via MSN to stumpy
Is the style sheet appling it's styles to other parts of the page? If so, then you just have a problem with one of your rules. If it isn't, then there's a problem with the linking of the stylehsheet.

Have you got a URL to the page in question?

Reply With Quote
  #9  
Old April 23rd, 2004, 06:11 PM
Spongy's Avatar
Spongy Spongy is offline
Alternately High
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: Hilversum, Netherlands
Posts: 223 Spongy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 13 h 56 m 41 sec
Reputation Power: 7
Send a message via MSN to Spongy
Could you be SPECIFIC on your problem?
__________________
Work to live, don't live to work

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsWeb DesignAdvanced Web Development > Css + Php ?!? Help Me


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek