- Posts: 4
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Frontpage Slideshow
- Changing nav colour in Uncut template
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Changing nav colour in Uncut template
- simon walter
- Topic Author
- Offline
- New Member
Less
More
12 years 11 months ago #44925
by simon walter
Changing nav colour in Uncut template was created by simon walter
Hi
I've searched and found what appears to be an old topic covering this, but the code is different so I assume the code's been updated. I need to change the colour on hover.
I've attached a screegrab of the section of code I think I need to change.
Thanks
Simon
I've searched and found what appears to be an old topic covering this, but the code is different so I assume the code's been updated. I need to change the colour on hover.
I've attached a screegrab of the section of code I think I need to change.
Thanks
Simon
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 11 months ago #44926
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Changing nav colour in Uncut template
Please provide me a link to your site and explain what you are trying to modify on it.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- simon walter
- Topic Author
- Offline
- New Member
Less
More
- Posts: 4
12 years 11 months ago #44927
by simon walter
Replied by simon walter on topic Re: Changing nav colour in Uncut template
Hi
The site is only available on my machine (running xamp), I'm trying to change the Slide Navigation text colour (see screengrab_page.jpg) of the inactive slides, I can change all the Slide Navigation text colour, but I need the active slide text one colour (#fff) and the inactive text another colour (#900) (see screengrab_page_2.jpg)
Cheers
Simon
The site is only available on my machine (running xamp), I'm trying to change the Slide Navigation text colour (see screengrab_page.jpg) of the inactive slides, I can change all the Slide Navigation text colour, but I need the active slide text one colour (#fff) and the inactive text another colour (#900) (see screengrab_page_2.jpg)
Cheers
Simon
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 11 months ago #44928
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Changing nav colour in Uncut template
This is customization since in Uncut template the thumbs text has the same color in active and inactive mode and via the forum we don't do customizations.
However, I suggest you to locate this element in Uncut css folder
.fpss-template-uncut .navigation-tagline {
color: #FAFAFA;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
change it to this:
.fpss-template-uncut .navigation-tagline {
color: #900;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
for inactive thumbs.
For active thumbs now, just add this in your css:
.fpss-template-uncut .navigation-tagline a:active {
color: #fff;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
It should work.
However, I suggest you to locate this element in Uncut css folder
.fpss-template-uncut .navigation-tagline {
color: #FAFAFA;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
change it to this:
.fpss-template-uncut .navigation-tagline {
color: #900;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
for inactive thumbs.
For active thumbs now, just add this in your css:
.fpss-template-uncut .navigation-tagline a:active {
color: #fff;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
It should work.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- simon walter
- Topic Author
- Offline
- New Member
Less
More
- Posts: 4
12 years 11 months ago #44929
by simon walter
Replied by simon walter on topic Re: Changing nav colour in Uncut template
Hi, thank you for your swift reply.
I tried your solution and it does change the colour for all the tagline text but the active part doesn't change. I think something might be over riding your solution but I can' figure out what, I've tried a clean install of the module and only altered the code you supplied and still no change when active.
Thanks
Simon
I tried your solution and it does change the colour for all the tagline text but the active part doesn't change. I think something might be over riding your solution but I can' figure out what, I've tried a clean install of the module and only altered the code you supplied and still no change when active.
Thanks
Simon
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 11 months ago #44930
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Changing nav colour in Uncut template
Try to add this (instead of .fpss-template-uncut .navigation-tagline a:active )
.fpss-template-uncut .navigation-tagline ul li a:active {
color: #fff;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
.fpss-template-uncut .navigation-tagline ul li a:active {
color: #fff;
font-size: 11px;
font-weight: normal;
line-height: 12px;
margin: 0;
}
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- simon walter
- Topic Author
- Offline
- New Member
Less
More
- Posts: 4
12 years 11 months ago #44931
by simon walter
Replied by simon walter on topic Re: Changing nav colour in Uncut template
Hi
I've been trying, but no luck yet. I've added ul, li, and tried adding a border to visually work out if the code is targeting the right thing.
Cheers
Simon
I've been trying, but no luck yet. I've added ul, li, and tried adding a border to visually work out if the code is targeting the right thing.
Cheers
Simon
Please Log in or Create an account to join the conversation.
- placesys
- Offline
- New Member
Less
More
- Posts: 3
12 years 11 months ago #44932
by placesys
Replied by placesys on topic Re: Changing nav colour in Uncut template
I'm almost done modifying the various Beez css files to get a coulour scheme I am happy with this. The forum has been a great help for me.
However I still cannot find solutions to the following issues:
1. How do I change the color border that goes around the individual links in the left hand menu? (SOLVED. See under)
2. How do I change the background color when I hover over the individual links in the left hand menu?
3. How do I change the background colour of my articles? (SOLVED. See under)
Best Regards
<a href= "familie-prolife-familie.ch">familie
However I still cannot find solutions to the following issues:
1. How do I change the color border that goes around the individual links in the left hand menu? (SOLVED. See under)
2. How do I change the background color when I hover over the individual links in the left hand menu?
3. How do I change the background colour of my articles? (SOLVED. See under)
Best Regards
<a href= "familie-prolife-familie.ch">familie
Please Log in or Create an account to join the conversation.
- Forum
- Commercial Joomla Extensions & Templates
- Frontpage Slideshow
- Changing nav colour in Uncut template