Dear friends,
How I can change text, in header each new a word begin by caps letter?
AS Templates
POSTED: 2014-07-12
Hello ALEXMANUA,
What is your site url please? We will check it and let you know.
Regards, AS Team.
AlexManUA
POSTED: 2014-07-13
http://dev7.webdes.com.ua/
AS Templates
POSTED: 2014-07-13
Hello ALEXMANUA,
You can do it by editing ext.asmenu.css file the following class (line 16):
#as-menu ul.as-menu > li a, #as-menu ul.as-menu > li > span {
display: block;
font-weight: normal;
line-height: 20px;
margin: 0;
padding: 0 5px;
text-transform: uppercase;
}
Just change the text-transform value from 'uppercase' to 'capitalize'
Regards, AS Team.
AlexManUA
POSTED: 2014-07-13
Very sorry for my bad english. I'm mean other things. For Ehample: we can see module is "Our Stuff" into Position: as-position-23. We see both words by caps letter. I'm need write not "Our Stuff", but I'm want write "Our stuff".
With best regards,
Alexander.
AS Templates
POSTED: 2014-07-14
Hello ALEXMANUA,
In the tmpl.default.css file you have to edit the following class:
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
How I can change text, in header each new a word begin by caps letter?
What is your site url please? We will check it and let you know.
Regards, AS Team.
You can do it by editing ext.asmenu.css file the following class (line 16):
#as-menu ul.as-menu > li a, #as-menu ul.as-menu > li > span {
display: block;
font-weight: normal;
line-height: 20px;
margin: 0;
padding: 0 5px;
text-transform: uppercase;
}
Just change the text-transform value from 'uppercase' to 'capitalize'
Regards, AS Team.
With best regards,
Alexander.
In the tmpl.default.css file you have to edit the following class:
h1, h2, h3, h4, h5, .item_header .item_title
{
font-weight: normal !important;
text-transform: capitalize;
}
Regards, AS Team.