Flash CS3 - Flash CS4

Free tutorials and scripts for all.
Actionscript 3.0

modificare un template

This is a discussion on modificare un template within the CSS | HTML forums, part of the Flash CS3 e Actionscript 3.0 category; Buongiorno, eccomi ancora qua con le mie richieste di aiuto. devo modificare un template gia esistente. come faccio a dividere ...


Go Back   Forum Flash CS3 Flash CS4 > Flash CS3 e Actionscript 3.0 > CSS | HTML

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 30-08-08, 09:38
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
modificare un template

Buongiorno, eccomi ancora qua con le mie richieste di aiuto.
devo modificare un template gia esistente. come faccio a dividere un modulo esistente? in varie parti?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #2 (permalink)  
Old 30-08-08, 12:05
Onsitus's Avatar
CSS.FlepStudio.org
 
Join Date: Jul 2007
Location: Nettuno Beach
Posts: 1,012
Rep Power: 3
Onsitus is on a distinguished road
Re: modificare un template

Ciao,

suppongo che sei sempre su Mambo?

O serve qualcuno che conosce benissimo Mambo (visto i pochi dettagli che dai) o devi dare dettagli precisi su che sono e come sono scritti quelli moduli (non credo che html/ccs c'entra )per capire le tue domande!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 31-08-08, 00:43
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
Riferimento: modificare un template

Ciao grazie mille per l'aiuto, infatti sono su mambo,e volevo creare un template da capo, allego un file di un immagine della struttura del sito, se puoi darmi un aiuto su come creare questo template te ne sarei infinitamente grato
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 31-08-08, 00:45
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
Riferimento: modificare un template

il file della struttura.
Attached Images
File Type: jpg Struttura_Template_sito.jpg (42.6 KB, 1 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5 (permalink)  
Old 04-09-08, 08:48
Onsitus's Avatar
CSS.FlepStudio.org
 
Join Date: Jul 2007
Location: Nettuno Beach
Posts: 1,012
Rep Power: 3
Onsitus is on a distinguished road
Re: Riferimento: modificare un template

Quote:
Originally Posted by grafix.greco View Post
il file della struttura.
Buongiorno, il problema maggiore non è nel creare la struttura html/css ma a integrarla in Mambo che non conosco.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Flash Multi Gallery
  #6 (permalink)  
Old 04-09-08, 08:55
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
Riferimento: modificare un template

Per mambo non ci sono problemi, so come caricare il template una volta creato. Mi serve una mano a creare lo schema come appare nell'immagine che ho allegato in precedenza
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #7 (permalink)  
Old 04-09-08, 14:28
Onsitus's Avatar
CSS.FlepStudio.org
 
Join Date: Jul 2007
Location: Nettuno Beach
Posts: 1,012
Rep Power: 3
Onsitus is on a distinguished road
Re: modificare un template

Per un sito a misura fisse, un struttura di base sarebbe:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>...</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#wrapper{
width: 900px;
margin:auto;
}
#header{
height:150px;
background-color:red;
}
#menu{
height:50px;
color:white;
background-color:black;
}
#left_col{
width:700px;
float:left;
background-color:gray;
}
#moduli{
height:100px;
background-color:green;
}
#contenuto{
height:400px;
}
#right_col{
width:200px;
height:500px;
float:left;
background-color:blue;
}
#footer{
clear:both;
height:100px;
background-color: yellow;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">TOP</div>
<div id="menu">MENU</div>
<div id="main">
<div id="left_col">
<div id="moduli">MODULI</div>
<div id="contenuto">CONTENUTI DEL SITO</div>
</div>
<div id="right_col">BANNER PUBBLICITARI</div>
</div>
<div id="footer">BANNER FOOTER</div>
</div>
</body>
</html>
Copia/incolla/salva come file .html e avrai il tuo disegno.

Le misure che ho usato sono a caso e non sei obbligato specificare un altezza per #contenuto e #right_col
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #8 (permalink)  
Old 09-09-08, 08:42
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
Riferimento: modificare un template

Ciao onsitus, hai sempre la risposta giusta per ogni domanda. senti e scusa per la domanda stupida ma io il sito lo sto costruendo in php. come faccio ha creare la index.php utilizzando il codice che mi hai dato tu?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #9 (permalink)  
Old 09-09-08, 08:49
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
Riferimento: modificare un template

Ciao onsitus, grazie per l'aiuto, altra domanda il sito che sto facendo è in php. come devo procedere per utilizzare il codice che mi hai dato?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #10 (permalink)  
Old 09-09-08, 08:51
Junior Member
 
Join Date: Jul 2008
Posts: 29
Rep Power: 0
grafix.greco is on a distinguished road
Riferimento: Re: modificare un template

Quote:
Originally Posted by Onsitus View Post
Per un sito a misura fisse, un struttura di base sarebbe:
HTML Code:





#wrapper{
width: 900px;
margin:auto;
}
#header{
height:150px;
background-color:red;
}
#menu{
height:50px;
color:white;
background-color:black;
}
#left_col{
width:700px;
float:left;
background-color:gray;
}
#moduli{
height:100px;
background-color:green;
}
#contenuto{
height:400px;
}
#right_col{
width:200px;
height:500px;
float:left;
background-color:blue;
}
#footer{
clear:both;
height:100px;
background-color: yellow;
}




TOP
MENU


MODULI
CONTENUTI DEL SITO

BANNER PUBBLICITARI

BANNER FOOTER

Copia/incolla/salva come file .html e avrai il tuo disegno.

Le misure che ho usato sono a caso e non sei obbligato specificare un altezza per #contenuto e #right_col
Ciao onsitus grazie per l'aiuto e scusami per il ritardo della mia risposta. Ma come faccio ha creare una index.php con il codice che mi hai fornito. Faccio empre copia e incolla?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads

Thread Thread Starter Forum Replies Last Post
Template css gratuiti Onsitus CSS | HTML 8 30-11-08 13:44
creare un template in css grafix.greco CSS | HTML 10 20-08-08 11:48
Flash 8 aiuto con template userna Flash CS3 Design 0 26-06-08 10:19
modificare .attributes faknino Actionscript 3.0 base 2 15-01-08 12:56
help, modificare da as2 a as3 cucamod Actionscript 3.0 base 10 17-10-07 13:48


All times are GMT. The time now is 15:22.


Powered by vBulletin versione 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC4
Forum SiteMap


FlepStudio
by Filippo Lughi
P.IVA 03605860406