Share your websites made with...

User 1907404 Photo


Registered User
18 posts

https://robtechrecords.com/
You say you built this site in RSD2. Am I right in beleiving that shopping cart is built into it?
User 53435 Photo


Registered User
79 posts

No shopping cart required, as all music is available from normal outlets and streaming services.
There are other facilities built in to it including page hit tracking etc that uses PHP and a backend for management of this (also built with RSD2 and PHP).
User 2839879 Photo


Registered User
99 posts

My latest website: https://www.citychurchchristchurch.co.nz

Feedback welcome!
CoffeeCup Websites:
City Church Christchurch: https://city.org.nz
Champion Freight: https://www.championfreight.co.nz/
eChamp: https://echamp.co.nz/
Champion Containers: http://championcontainersnz.com/
User 2088758 Photo


Senior Advisor
3,101 posts

Bainn wrote:
My latest website: https://www.citychurchchristchurch.co.nz

Feedback welcome!


Very nice!!! How did you manage the circles with the dropdown text and button. Was that done with some external script?
Taking over the world one website at a time!

Steve Kolish
www.misterwebguy.com

YouTube Channel:
https://www.youtube.com/channel/UCL8qVv … ttneYaMSJA
User 2839879 Photo


Registered User
99 posts

Steve wrote:
Bainn wrote:
My latest website: https://www.citychurchchristchurch.co.nz

Feedback welcome!


Very nice!!! How did you manage the circles with the dropdown text and button. Was that done with some external script?


Thank you for the feedback.

Correct. I used some custom jquery and css. In RSD it's all visible.
CoffeeCup Websites:
City Church Christchurch: https://city.org.nz
Champion Freight: https://www.championfreight.co.nz/
eChamp: https://echamp.co.nz/
Champion Containers: http://championcontainersnz.com/
User 2088758 Photo


Senior Advisor
3,101 posts

Bainn wrote:
Steve wrote:
Bainn wrote:
My latest website: https://www.citychurchchristchurch.co.nz

Feedback welcome!


Very nice!!! How did you manage the circles with the dropdown text and button. Was that done with some external script?


Thank you for the feedback.

Correct. I used some custom jquery and css. In RSD it's all visible.


Would you mind sharing that trick with us?
Taking over the world one website at a time!

Steve Kolish
www.misterwebguy.com

YouTube Channel:
https://www.youtube.com/channel/UCL8qVv … ttneYaMSJA
User 2839879 Photo


Registered User
99 posts

Steve wrote:

Would you mind sharing that trick with us?


Sure.

First of all, I use RSD to create each point. You have an outer container and an inner container (for each). The inner container holds the content you only want to display on hover. Both containers are issued a unique ID.

Second, I use custom CSS to display:none on the inner container. Example.

#circle-container-1b {
display:none;
}

Note: I could do this part in RSD, but I like to see the content while using the software.

After that, I use jquery to create the display effect on hover. Example:

$('#circle-container-1').mouseenter(function(){
$('#circle-container-1b').css('visibility', 'visible').hide().stop().delay('150').slideDown('350');
});
$('#circle-container-1').mouseleave(function(){
$('#circle-container-1b').stop().slideUp('350');
});

Basically, this tells the website to display the inner container when the outer container is hovered. Make sense? There is a more efficient way of doing this which I’ve since worked out, but this does the job.

Hope this helps.
CoffeeCup Websites:
City Church Christchurch: https://city.org.nz
Champion Freight: https://www.championfreight.co.nz/
eChamp: https://echamp.co.nz/
Champion Containers: http://championcontainersnz.com/
User 2756496 Photo


Registered User
44 posts

A few more minimal design using RSD - hope you like them.

06
http://www.rm.design-on2.com/06/
07
http://www.rm.design-on2.com/07/
08
http://www.rm.design-on2.com/08/

Cheers!
Kelvin
Kelvin
ON2 Interactive
www.on2interactive.com
User 2119480 Photo


Registered User
78 posts

Eric Rohloff wrote:
Ger van veen wrote:
Hello

This is my first site with RSD

http://www.amalia-apartments.com

Looking great. One recommendation. Reduce the width of your map at the bottom so touch devices can scroll past.
Pt Augusta
South Australia
User 2119480 Photo


Registered User
78 posts

HI Eric
I really like what you have done with this site.
Which theme did you start with? Was it The Coast?
Regards
Tony
Pt Augusta
South Australia

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.