Apperance of news and blog entries - Site News & Blogs - uCoz System management and tuning - uCoz Community
You logged in as Guest
Username/E-mail:
Recent messages · Members · Forum rules · FAQ · SEARCH Registration · Log in


We are in the second round! Let's keep voting!

Page 1 of 3123»
Forum moderator: Dartz 
uCoz Community » uCoz System management and tuning » Site News & Blogs » Apperance of news and blog entries
Apperance of news and blog entries
saqrepDate: Friday, 2008-09-12, 4:40 Am | Message # 1
Newbie
Group: Users
Messages: 3
Awards: 0
Reputation: 0
Status: Offline
hi everybody
can aynone tell me that where can i find the new news entry form? i want to translate the module but i cannot find some parts in the code.i have also translated all the parts in main/Substitution of default phrases...
but in the news module when i try to add new news there are
1. Images [?]
Max size - 2000Kb
2. Images options
3. Entry options

i cannot find how to change them..

 
SunnyDate: Monday, 2008-09-15, 4:34 Am | Message # 2
Haunter
Group: Administrators
Messages: 2016
Awards: 121
Reputation: 139
Status: Offline
saqrep, you can use Quick Replacement feature in Design Customization section.

I'm not "man", "sir" or whatever. I'm female!
About signatures, screenshots etc...
 
AustinBaconDate: Thursday, 2008-11-27, 2:56 Am | Message # 3
Newbie
Group: Users
Messages: 5
Awards: 0
Reputation: 0
Status: Offline
Could I edit $TITLE_BAR$ ? Because $TITLE_BAR$ actually include title and the date. And I don't want to show the date in the titile bar. How can I did?
 
KronDate: Thursday, 2008-11-27, 4:48 Am | Message # 4
uCoz Admin
Group: Administrators
Messages: 170
Awards: 6
Reputation: 45
Status: Offline
AustinBacon, remove this code from template and use other codes, like $CAT_NAME$ > $ENTRY_NAME$
 
augustDate: Friday, 2008-11-28, 1:59 Am | Message # 5
Newbie
Group: Users
Messages: 7
Awards: 0
Reputation: 0
Status: Offline
Can I set backgroudn for each section of blog?

Thank you

 
iLeeDate: Sunday, 2008-12-07, 5:29 Am | Message # 6
Constant
Group: Checked
Messages: 197
Awards: 0
Reputation: 0
Status: Offline
I don't think you can. Unless you are using your own HTML file.

Use your brain before you post ~Lee
Please use search, ~Lee
 
egyguideDate: Saturday, 2009-02-28, 8:29 Am | Message # 7
Newbie
Group: Users
Messages: 1
Awards: 0
Reputation: 0
Status: Offline
i wonder how would i control the appearance of the news on any place on my homepage to be like a moving stripe ( if u know what i mean ),could it be done with visual editor,or do u have a full code to do it

ur answer is much appreciated


Egyguide
 
hellDate: Saturday, 2009-02-28, 8:34 Am | Message # 8
Regular
Group: Checked
Messages: 50
Awards: 0
Reputation: 8
Status: Offline
Main » Informers

Attachments: 1160627.jpg(78Kb)


uCoz - the best CSM!

Message edited by hell - Saturday, 2009-02-28, 8:35 Am
 
ArmarosDate: Saturday, 2009-02-28, 11:24 Am | Message # 9
Haunter
Group: Checked
Status: Offline
hell, learn some English to understand problem & stop increasing your post count!

egyguide, did you meant moving text? If so than:

Code
<marquee>Text Here</marquee>

If no, explain better, please. You can edit code via Control Panel -> Customize Design.

Rezwan73Date: Sunday, 2009-04-05, 11:41 Am | Message # 10
Regular
Group: Checked
Messages: 73
Awards: 1
Reputation: -1
Status: Offline
Hello,

When i go to any news category then all news is views in full description. I wanted to view the title of the news only. when anyone click on any title of the news then they can see that news. Is it possible? if yes then how?

Thanks for hearing.

Added (2009-04-05, 11:41 Am)
---------------------------------------------
I think, I have found it's solution.

go: CP>Site News> Module settings-
now do according to this picture

Then in all news category will show the title of the news only. and by clicking on the news title any one can see that news. Thus number of views of news will rise.

Thanks.


My suggestions:
Include all module in "Rank" by point system
Easy transfer system between Categories
 
shimrayDate: Friday, 2009-05-01, 1:06 Am | Message # 11
Newbie
Group: Checked
Messages: 7
Awards: 0
Reputation: 0
Status: Offline
Hello everyone. Is it possible to enter the news entry name in my desired colours? If so pls tel me how to do it. I'll be very grateful

R R Shimray II
 
ArmarosDate: Friday, 2009-05-01, 4:54 Am | Message # 12
Haunter
Group: Checked
Status: Offline
Entry title colour?
shimrayDate: Friday, 2009-05-01, 9:49 Am | Message # 13
Newbie
Group: Checked
Messages: 7
Awards: 0
Reputation: 0
Status: Offline
Yes the entry title colour. Pls help

R R Shimray II
 
ArmarosDate: Friday, 2009-05-01, 2:00 Pm | Message # 14
Haunter
Group: Checked
Status: Offline
CP -> Customize Design -> CSS -> F3 -> Paste /* Entries Style */ -> F3

Code:
.eTitle {font-family:Tahoma,Arial,Sans-Serif;font-size:12px;font-weight:bold;color:#4D6D91; padding: 0 0 0 18px; background: url('/.s/t/121/15.gif') no-repeat 0px 1px;}

(In red is code which you must change to other colour code. HTML Colour Codes)



After you are done, you must add this code under the code above.

Code:
.eTitle a:link {text-decoration:underline; color:#4D6D91;}
.eTitle a:visited {text-decoration:underline; color:#4D6D91;}
.eTitle a:hover {text-decoration:underline; color:#4D6D91;}
.eTitle a:active {text-decoration:underline; color:#4D6D91;}

(Parts in red you must change to same code which you changed in first code)



All together would look like this:

Quote (Code)
/* Entries Style */
.eBlock {}
.eTitle {font-family:Tahoma,Arial,Sans-Serif;font-size:12px;font-weight:bold;color:#FF0000; padding: 0 0 0 18px; background: url('/.s/t/121/15.gif') no-repeat 0px 1px;}
.eTitle a:link {text-decoration:underline; color:#FF0000;}
.eTitle a:visited {text-decoration:underline; color:#FF0000;}
.eTitle a:hover {text-decoration:underline; color:#4D6D91;}
.eTitle a:active {text-decoration:underline; color:#4D6D91;}
.eMessage {text-align:justify;padding-bottom:5px;}
KingDate: Thursday, 2009-05-14, 2:20 Am | Message # 15
Newbie
Group: Checked
Messages: 13
Awards: 1
Reputation: -1
Status: Offline
Did you try change the number from 0 to 1 for example?

If i help you please give me reputation :)
I just like helping people.
 
uCoz Community » uCoz System management and tuning » Site News & Blogs » Apperance of news and blog entries
Page 1 of 3123»
Search: