marcogg
Posts: 3
|
| Posted: 11/27/2007, 7:40 AM |
|
Hi there, everybody.
My first experience with CodeCharge Studio Demo, and first problems :
I've created a simple PHP page with a Gallery Builder table inside.
I want the page to be a simple "News List" that gets data from a simple MySQL table.
- id : counter.
- title : the tite of the new.
- new : the new itself.
- add_date : the date the new has been added.
I want each row to show :
- title in big and Bold font.
- new : normal size font.
- add_date : Bold normal-size font .
I've tried to select each label on the page in DESIGN mode... The only properties I can see / edit are in the Properties / Data.
I can't find anything in Properties / Format for the label... The whole tab is blank...
What has to be done for this simple task ? 
Thanx.
|
 |
 |
aondecker
Posts: 58
|
| Posted: 11/27/2007, 7:58 AM |
|
To change make your labels bold and change fonts, all you need to do is highlight the desired label in design mode and then you can change the font, bold/italics/underline from the menu at the top
|
 |
 |
marcogg
Posts: 3
|
| Posted: 11/27/2007, 8:30 AM |
|
First of all, thanx for answering.
I've already tried.
Example : I select the label "title", double-click inside as all the text "title" gets highlited.
Then I set Font type / Font Bold / Font Size...
In design mode works fine, but when I launch "Live Page" it's all as before... No text format seems to have been applied !
Also after publishing, when I open my generated php page ( localhost/... ... ), everything is fine but my label contents are always set to default plain text... 
What' wrong ???
|
 |
 |
ReneS
Posts: 225
|
| Posted: 11/27/2007, 3:08 PM |
|
Hi,
Are you using style sheets?
Rene
|
 |
 |
marcogg
Posts: 3
|
| Posted: 11/28/2007, 12:32 AM |
|
Quote ReneS:
Hi,
Are you using style sheets?
Rene
I have generated the php page with default settings.
In Project Settings / Styles, I have :
>> Dinamically Modify Styles : NOT Checked.
>> Use : STYLES. - There's a note that says Themes are Deprecated...
I have a dir "Styles" with many .css files in my pubblication folder...
Don't know why a so simple task has to be so difficult with codecharge...
By now i have "resolved" the problem bypassing codecharge editor and manually modifying the index.htm file :
For example :
<!-- BEGIN Panel RowComponents -->
{my_title} <br>
manually modified in :
<!-- BEGIN Panel RowComponents -->
<p style="color:#000000;
font: Arial;
font-weight: bold;
font-size: 1.3em">
{my_title} </p><br>
By now this is the only way to make the title of each new on my published page, in the format I want... 
There' s also another problem working on labels in CodeCharge Design Mode :
I double click into "my_title" label to set Red the font's color, and I get the message :
"Unable to replace selected area in design mode. Please switch to HTML mode"... 
|
 |
 |
|