-
AuthorPosts
-
April 18, 2013 at 8:54 pm #186906
I am having two problems
1. Logo is too big to accommodate on the deader. I have made space in custom.css I do not know how to increase the header height.
2. I edited the text in the hero module and the “arrow” and the “button for view more” disappeared. The code area is generating extra code.
HERO MODULE – Custom code
<div class=””\”hero-unit\”””>
<h1>Simplicity Isn’t Simple.</h1>
<p>Design is a word that’s come to mean so much that it’s also word that has come to mean nothing.</p>
<p><a class=””\”btn”” href=””http:/www.joomlart.com/joomla/templates/showcase\””” target=””\”_blank\”””>View Our Works</a></p>
<p class=””\”btn_unit\”””><a class=””\”arrow-down”” href=””\”index.php?Itemid=435#our_portfolio\”””>Arrow down</a></p>
</div>Please help.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 19, 2013 at 1:44 pm #490457This will help you solve the problem of your site
1) Logo of your site
Open templates/ja_onepage/css/custom.css file
From
.logo-image a {
width: 200px; <-with width your logo
height: 34px; <-with height your logo
change to
.logo-image a {
width: 148px;
height: 25px;
}
2) You can refer to user guide here and find “1. Home“
1 user says Thank You to Ninja Lead for this useful post
May 7, 2013 at 5:15 pm #492136Thanks that helped. I have two more problems. Appreciate if you can help.
1. The button color on the home page has changed to white. Please let me know how to fix that.
2. The subtitle on the INTRODUCING page ” HELLO, WE ARE PAGE.TEAM. WHAT WE CAN DO?” Can you pleas let me know
where I can change that text.Please help.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 8, 2013 at 4:31 am #4921771) You can find it in css file
Open templates/ja_onepage/css/themes/retro/template.css file
.hero-unit .btn {
border: 0;
color: #fff
font-weight: bold;
padding: 15px 40px;
text-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}.btn {
padding: 4px 14px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
color: #666
text-shadow: 0 1px 1px rgba(255,255,255,0.75);
background-color: #f8f8f8
background-image: -moz-linear-gradient(top,#ffffff,#eee)
background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),to(#eee));
background-image: -webkit-linear-gradient(top,#ffffff,#eee)
background-image: -o-linear-gradient(top,#ffffff,#eee)
background-image: linear-gradient(to bottom,#ffffff,#eee)
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
border-color: #eee #eee #c8c8c8
border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
*background-color: #eee<- error structure css style
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
2) You can open language/en-GB/en-GB.tpl_ja_onepage.ini file
Find and see it
<blockquote>
TPL_SUBTITLE_INTRODUCING = “Hello, We are Page.Team. What We Can Do?”
</blockquote>1 user says Thank You to Ninja Lead for this useful post
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 8, 2013 at 4:31 am #4921781) You can find it in css file
Open templates/ja_onepage/css/themes/retro/template.css file
.hero-unit .btn {
border: 0;
color: #fff
font-weight: bold;
padding: 15px 40px;
text-shadow: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}.btn {
padding: 4px 14px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
color: #666
text-shadow: 0 1px 1px rgba(255,255,255,0.75);
background-color: #f8f8f8
background-image: -moz-linear-gradient(top,#ffffff,#eee)
background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),to(#eee));
background-image: -webkit-linear-gradient(top,#ffffff,#eee)
background-image: -o-linear-gradient(top,#ffffff,#eee)
background-image: linear-gradient(to bottom,#ffffff,#eee)
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
border-color: #eee #eee #c8c8c8
border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
*background-color: #eee<- error structure css style
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
2) You can open language/en-GB/en-GB.tpl_ja_onepage.ini file
Find and see it
<blockquote>
TPL_SUBTITLE_INTRODUCING = “Hello, We are Page.Team. What We Can Do?”
</blockquote>1 user says Thank You to Ninja Lead for this useful post
May 8, 2013 at 5:15 am #492181I have figured out how to do teh button color (sort of). Can you please help me find “HELLO, WE ARE PAGE TEAM….” <em>@sudheermatta 371901 wrote:</em><blockquote>Thanks that helped. I have two more problems. Appreciate if you can help.
1. The button color on the home page has changed to white. Please let me know how to fix that.
2. The subtitle on the INTRODUCING page ” HELLO, WE ARE PAGE.TEAM. WHAT WE CAN DO?” Can you pleas let me know
where I can change that text.Please help.</blockquote>
May 8, 2013 at 3:40 pm #492257The main nav button bar looks too high up. i will like to bring it down to align with the logo. can you please tell me where i can make the change.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 9, 2013 at 8:32 am #492319<em>@sudheermatta 371961 wrote:</em><blockquote>I have figured out how to do teh button color (sort of). Can you please help me find “HELLO, WE ARE PAGE TEAM….”</blockquote>
Open http://www.prog-design.com/language/en-GB/en-GB.tpl_ja_onepage.ini file
Find “TPL_SUBTITLE_INTRODUCING”
and change red mark
<blockquote>TPL_SUBTITLE_INTRODUCING = “Hello, We are Prog Design Team. What We Can Do?”</blockquote>
<em>@sudheermatta 372039 wrote:</em><blockquote>The main nav button bar looks too high up. i will like to bring it down to align with the logo. can you please tell me where i can make the change.</blockquote>
Open templates/ja_onepage/css/themes/retro/template.css file
from
.logo h1,
.logo h1 a {
margin-top: 10px;
}
Change to
.logo h1,
.logo h1 a {
margin-top: 0px;
}
1 user says Thank You to Ninja Lead for this useful post
-
AuthorPosts
This topic contains 8 replies, has 2 voices, and was last updated by Ninja Lead 11 years, 6 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum