News:

Join the Facebook Fan Page.

Main Menu

Redsy

Started by Diego Andrés, April 05, 2015, 07:44:21 PM

Previous topic - Next topic

anikpand

Can you Please Help me with the LOGO size please i am unable to change the SSize

Daniiel

New release!

  • Fixed icons inversed
  • Fixed recent post tab
  • Fixed some responsive things
  • Added a new option in the admin to set the height of the navbar
  • Improved the admin menu and navbar


Greetings!

Jade Elizabeth

Once proud Documentation Writer and Help Squad Leader | Check out my new adult coloring career: Color With Jade/Patreon.

Daniiel

Quote from: Jade Elizabeth on December 15, 2015, 10:50:47 PM
Did you fix the stray </ul> in the display template as well? :)

http://www.simplemachines.org/community/index.php?topic=535335.msg3850637#msg3850637
Now I think it´s fixed.
Display.template.php
Search:
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">';

Replace with:
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>';

echo'
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">';


OCJ

Thanks, enjoyed using this theme.

Jade Elizabeth

Thanks heaps Daniiel! :D

I haven't updated it yet, but if you were curious here's what I did with your theme....mostly it's just color changes but it looks so different ha ha:
http://www.colormeforum.com/

Will be updating tonight with Winmerge's assistance ha ha.
Once proud Documentation Writer and Help Squad Leader | Check out my new adult coloring career: Color With Jade/Patreon.

romeoy2k

#126
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You

VBuser

I cannot log in or out, is this fix coming?


Rene88

Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You

Have the same problem.
updated and now have that problem :(

Decent_946

Quote from: Rene88 on December 22, 2015, 06:16:58 PM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You

Have the same problem.
updated and now have that problem :(
if u guys want logout button on menu. it can be done by using this mod.. when u will install this mod, the logout button will automatically appear in your menu.

well, actual reason for replying here was to post a error of this theme.
ahm, i just recently installed this theme to my new forum which is ( http://skylarks.ml ) well the error i wanna report is.. i am using menu editor light mod in order to add/modify tabs menu bar .. well i am able to add a button but when i select external link, there doesn't appear a new small box where we give it that external link, like in other themes when we choose External link, a small box automatically appears where we put external link. but in this theme it doesn't appears..
i'll post some pictures soon because atm, i am unable to capture screenshot some PC errors..
Thankx to RebellioN

Rene88

Its not only the logout button also the Show unread posts since last visit and Show new replies to your posts. what is gone :( hope there is a solusion fast.

Decent_946

Quote from: Rene88 on December 26, 2015, 06:23:54 AM
Its not only the logout button also the Show unread posts since last visit and Show new replies to your posts. what is gone :( hope there is a solusion fast.
here this actually is.   New posts instead of "Show unread posts since last visit". & New replies instead of "Show new replies".

Thankx to RebellioN

tietie

Hello

when full dispaly cannot find logout button.


anybody help please.

tietie

hello Daniiel
thank for nice themes.

have a probrem
In Info Center it active show User online.
i want to active show recent post.

Thank a lot

Decent_946

Quote from: tietie on December 27, 2015, 07:51:41 AM
hello Daniiel
thank for nice themes.

have a probrem
In Info Center it active show User online.
i want to active show recent post.

Thank a lot
simple.. as we add in other themes, goto Admin ==> Configuration => Current theme there you will find a option
"Number of recent posts to display on board index" you'll find "0" in that box, change it to your desire number.. i prefer 15.
Thankx to RebellioN

.Lúthien

#135
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
It's a great theme indeed, and beautifully responsive.
I have the same problem with the popup-up dropdown menu. I thought I had caused the problem myself by all the modifications I had done to the bootstrap.css and index.css.
Because I couldn't find it I eventually installed another instance of SMF and applied a vanilla copy of the Redsy theme to find that it didn't work there either.

What I could find with the browser's web developer is that on the smftricks demo site, when you move the mouse over the a.dropdown-toggle area (containing the avatar image & username), the code that contains the dropdown menu:
<li class="dropdown"> = $0
changes to
<li class="dropdown open"> = $0
which makes the menu appear. If I add it manually in the web developer tool it appears as well.

However, in the updated redsy template code the "open" class is not added on mouse-over.
Maybe there's a bug in the javascript that should make this happen?

EDIT

Just for the heck of it, I tried it with the older version of redsy.js found on hxxp:demo.smftricks.com [nonactive] and now it works fine.
You could try that: rename the existing redsy.js, create another file named redsy.js and paste this code in it:

$(document).ready(function(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
});
$(".scroll-to-top").click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
$(window).scroll(function(){

var position = $(window).scrollTop();

if(position >= 200) {
$(".scroll-to-top").addClass("active")
}
else {
$(".scroll-to-top").removeClass("active")
}
});
});

pappferenc1

Thank Daniiel, and all, and .Lúthien.  O:)  :)


What is this?


Help!

Sorry, don't speak elnglish.  ::) :-X

Daniiel

#137
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
Sorry, my mistake, do this:
Index.template.php
Search:
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">

Replace with:
<ul class="nav navbar-nav navbar-right">
<li class="dropdown first-level">

Redsy.js (Themes/Redsy/scripts)
Search:
$(".dropdown.first-level").each(function() {         
Replace with:
$(".dropdown.first-level .dropdown-toggle").each(function() {           



Quote from: .Lúthien on December 28, 2015, 06:23:51 AM
Quote from: romeoy2k on December 17, 2015, 10:09:20 PM
Hello Daniiel Thank you for beautiful themes. I have one question:My localhost. I can not find dropdown-menu same as demo.smftricks.com  I can not find menu logout
Thank You
It's a great theme indeed, and beautifully responsive.
I have the same problem with the popup-up dropdown menu. I thought I had caused the problem myself by all the modifications I had done to the bootstrap.css and index.css.
Because I couldn't find it I eventually installed another instance of SMF and applied a vanilla copy of the Redsy theme to find that it didn't work there either.

What I could find with the browser's web developer is that on the smftricks demo site, when you move the mouse over the a.dropdown-toggle area (containing the avatar image & username), the code that contains the dropdown menu:
<li class="dropdown"> = $0
changes to
<li class="dropdown open"> = $0
which makes the menu appear. If I add it manually in the web developer tool it appears as well.

However, in the updated redsy template code the "open" class is not added on mouse-over.
Maybe there's a bug in the javascript that should make this happen?

EDIT

Just for the heck of it, I tried it with the older version of redsy.js found on demo.smftricks.com and now it works fine.
You could try that: rename the existing redsy.js, create another file named redsy.js and paste this code in it:

$(document).ready(function(){
$(".dropdown").hover(           
function() {
$(".dropdown-menu", this).stop( true, true ).fadeIn("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
},
function() {
$(".dropdown-menu", this).stop( true, true ).fadeOut("fast");
$(this).toggleClass("open");
$("b", this).toggleClass("caret caret-up");               
});
$(".scroll-to-top").click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
$(window).scroll(function(){

var position = $(window).scrollTop();

if(position >= 200) {
$(".scroll-to-top").addClass("active")
}
else {
$(".scroll-to-top").removeClass("active")
}
});
});


If you do that, it generates an error in the admin menu. Just do what I leave before.



I fixed the new realease!

420Connect.co.uk

Thanks for the updates on redsy Daniel!

I'm going to take my time rebuilding on another copy and move everything over once I've retweaked it to suit my needs..

Anyway, some basic things to start with..
Could you help hiding the members only buttons to guests when they click on the profile icon..

I think it should only show login /register for guests there and edit profile etc. once you have logged in. 
I'll be adding to the profile menu later on but thought I'd suggest adding a 'view profile' link inside the profile icon dropdown.

And my 2nd niggle, could you help with having one menu show at a time (e.g. if the profile menu is open and you click the main menu button, the profile menu would close and the other one opens..

No doubt I'll have a million other ideas along the way but they would be a nice tweak if you've got the time!  O:)

Cheers dude
www.420Connect.co.uk ~ A Social Network For The #CannabisCommunity ~ Come say "High" ;)

Rene88

Thank you very much Daniiel :)

Advertisement: