- Posts: 7
COMMUNITY FORUM
- Forum
- Commercial Joomla Extensions & Templates
- Commercial Joomla Templates
- Search a Developer make some change. Paid
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.
Search a Developer make some change. Paid
- Stefan Brumann
- Topic Author
- Offline
- New Member
Less
More
10 years 8 months ago #138076
by Stefan Brumann
Replied by Stefan Brumann on topic Search a Developer make some change. Paid
Thank you! its function well just a 4 Social Links.
My fixed Header not real work on on big screens.Social go right away. and smaler jump left on 680px. add somthings my self Code?
menu toggler to the left was a mistake on my tests
on magz.tranceradio.ch its on the left always a Menue.
Its possible not hiden the horizontal menue to the last point its touch environt 700-800px
#mainHeader { background: white; position: fixed; z-index: 100; height: 50px; background: rgba(255, 255, 255, 0.8); border-radius: 0 0 5px 5px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.27); }
How to include a Dropdown on your Module Place? i was Test on the Logout.php file on the SCLogin
like This
send my a paypal donation emailadress...
My fixed Header not real work on on big screens.Social go right away. and smaler jump left on 680px. add somthings my self Code?
menu toggler to the left was a mistake on my tests
on magz.tranceradio.ch its on the left always a Menue.
Its possible not hiden the horizontal menue to the last point its touch environt 700-800px
#mainHeader { background: white; position: fixed; z-index: 100; height: 50px; background: rgba(255, 255, 255, 0.8); border-radius: 0 0 5px 5px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.27); }
How to include a Dropdown on your Module Place? i was Test on the Logout.php file on the SCLogin
like This
<ul class="menuWrapper">
<li class="dropdown">
<a href="#" class="dropdownLogin" data-toggle="dropdown-menu">
<?php
echo $helper->getSocialAvatar($registerType, $profileLink, $user);
?>
<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">
<?php
if ($params->get('greetingName') != 2)
{
if ($params->get('greetingName') == 0)
$name = $user->get('username');
else
$name = $user->get('name');
echo '<div class="sclogin-greeting">' . JText::sprintf('MOD_SCLOGIN_WELCOME', $name) . '</div>';
}
if ($params->get('showLogoutButton'))
{ ?>
</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="dropdown-header">Header</li>
<li><a href="#">Separated link</a></li>
<li><?php
}
if ($params->get('showUserMenu'))
{
echo $helper->getUserMenu($params->get('showUserMenu'), $params->get('userMenuStyle'));
}
if ($params->get('showConnectButton'))
{ ?>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav pull-right">
</ul>
send my a paypal donation emailadress...
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 8 months ago - 10 years 8 months ago #138077
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic Search a Developer make some change. Paid
Sorry about the fixed menu I forgot to do it. I will send you a CSS snippet.
You can change the 64.063em pixels if you want. It is currently 1025.
Now the SCLogin, apart from the HTML/PHP code needs a small JS snippet. From what I can see is uses Bootstrap's native dropdown.
If you are using Joomla! 3.2 then go to the template's params and force load bootstrap. That should cover it I think.
Now since the menu will be visible up to 800px sadly the toggler has to stay on the left (The gird has different breakpoints and it is unsafe to alter them).
@media only screen and (min-width: 64.063em) {
#mainHeader { position: fixed; left: auto; top: 0; background: #fff; z-index: 999; max-width: 78.75em; position: fixed; }
body { padding-top: 68px; }
}
You can change the 64.063em pixels if you want. It is currently 1025.
Now the SCLogin, apart from the HTML/PHP code needs a small JS snippet. From what I can see is uses Bootstrap's native dropdown.
If you are using Joomla! 3.2 then go to the template's params and force load bootstrap. That should cover it I think.
Now since the menu will be visible up to 800px sadly the toggler has to stay on the left (The gird has different breakpoints and it is unsafe to alter them).
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Stefan Brumann
- Topic Author
- Offline
- New Member
Less
More
- Posts: 7
10 years 7 months ago - 10 years 7 months ago #138078
by Stefan Brumann
Replied by Stefan Brumann on topic Search a Developer make some change. Paid
Since i used changed template i not more able use a background image on popup player. how can fix it?
intrestet see on actualy work restyling dev.tranceradio.ch
how change tranceparency from header and from menue? last time i found and change it. now i no more found.
intrestet see on actualy work restyling dev.tranceradio.ch
how change tranceparency from header and from menue? last time i found and change it. now i no more found.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
10 years 7 months ago - 10 years 7 months ago #138079
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic Search a Developer make some change. Paid
I removed the demo image (they were using a lot of space). You can use another image if you wish. Simply use this snippet.
To change the transparency you need to edit the #mainHeader value.
Currently it iswhich gives a 70% opacity, changing the .7 will change the opacity as well. ( 0.1 - 1 ).
PS. the demo image is located here: demo.nuevvo.com/commercial/j3x/radiowave/templates/radiowave/images/variations/default/bgImage.jpg
Download it if you want and place it in the /templates/radiowave/images/variations/default/ folder if you do not wish to use another image.
body.tmplIsPopup { background: fixed url(../images/INSERT_YOUR_IMAGE_HERE); background-size: cover; }
To change the transparency you need to edit the #mainHeader value.
Currently it is
#mainHeader { background: rgba(255, 255, 255, 0.7); }
PS. the demo image is located here: demo.nuevvo.com/commercial/j3x/radiowave/templates/radiowave/images/variations/default/bgImage.jpg
Download it if you want and place it in the /templates/radiowave/images/variations/default/ folder if you do not wish to use another image.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Forum
- Commercial Joomla Extensions & Templates
- Commercial Joomla Templates
- Search a Developer make some change. Paid