vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > vBa CMPS v4.0 Support > "How Do I..." Questions

Reply
 
Thread Tools Display Modes
  #21  
Old 06-20-2012, 03:47 PM
LaBella's Avatar
LaBella LaBella is offline
The Jerzee Devil
 
Join Date: Nov 2005
Posts: 29
Default

OK- I do not know if it a Firefox thing or what, but my set up looks different.


Can I just click on this general "use default options" box? Sorry to be such a pest, but this is friggin KILLING me!
Attached Images
File Type: png no_way_to_get_to_advanced_options.png (198.1 KB, 13 views)
__________________
JerzeeDevil Forums
Reply With Quote
  #22  
Old 06-20-2012, 03:56 PM
LaBella's Avatar
LaBella LaBella is offline
The Jerzee Devil
 
Join Date: Nov 2005
Posts: 29
Thumbs up

Quote:
Originally Posted by Dragonsys View Post
ACP -> vBa CMPS -> Edit Pages -> Homepage -> Advanced Options -> Site Navigation Options

check all of the Use Default boxes (should be 4 of them) and then click on Save
YOU are a life saver! I broke down (emotionally) and opened up the page with IE (it did indeed feel dirty) and there were red x's to open up the settings and do as you said. I owe you ONE, big time! It finally works.


God, do I owe you a solid, thanks SO MUCH for bearing with me and all of my tardishness! I wonder why the code doesn't work in Firefox, I wonder about other browsers?!

Either way, you have a special place in Valhalla waiting for you and your patience.



RL
__________________
JerzeeDevil Forums
Reply With Quote
  #23  
Old 06-22-2012, 03:32 PM
Dragonsys Dragonsys is offline
Senior Member
 
Join Date: Jan 2008
Location: Atlanta, GA
Posts: 444
Default

Firefox does not display the Red X's

You are missing some images, I know I have seen posts around here about the collapse button missing...
Reply With Quote
  #24  
Old 06-22-2012, 07:24 PM
LaBella's Avatar
LaBella LaBella is offline
The Jerzee Devil
 
Join Date: Nov 2005
Posts: 29
Default

Quote:
Originally Posted by Dragonsys View Post
Firefox does not display the Red X's

You are missing some images, I know I have seen posts around here about the collapse button missing...
Nor Opera. My 2 browsers of choice.
__________________
JerzeeDevil Forums
Reply With Quote
  #25  
Old 06-24-2012, 02:23 PM
thecore762 thecore762 is offline
Member
 
Join Date: Jul 2008
Posts: 73
Default

Wow, I didn't even know this thread existed, whats up guys?
I am the owner of the The 47 Ronin site: www.47r-squad.com
Reply With Quote
  #26  
Old 07-04-2012, 03:18 AM
TeknoSounds TeknoSounds is offline
Senior Member
 
Join Date: Nov 2006
Posts: 140
Default

Quote:
Originally Posted by thecore762 View Post
Wow, I didn't even know this thread existed, whats up guys?
I am the owner of the The 47 Ronin site: www.47r-squad.com
Hey! Everyone's been dying to ask...how do you do your stuff?!?
Reply With Quote
  #27  
Old 07-04-2012, 09:35 AM
SouthpawK SouthpawK is offline
Member
 
Join Date: Aug 2008
Location: Georgia
Posts: 93
Default

Quote:
Originally Posted by TeknoSounds View Post
Hey! Everyone's been dying to ask...how do you do your stuff?!?
I agree. Actually he pointed me to the site with the code but it just left me confused...but I am still trying.
Reply With Quote
  #28  
Old 07-04-2012, 10:27 PM
Dragonsys Dragonsys is offline
Senior Member
 
Join Date: Jan 2008
Location: Atlanta, GA
Posts: 444
Default

it has to do with this class
Code:
class="sliding-element"
and the jquery:
Code:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript">
var $sq = jQuery.noConflict();
$sq(document).ready(function() {
    $sq('#sliding-navigation').slide({
        time: 50,
        multiplier: .6
    });
    $sq(".tsktest").on({
        mouseenter:
            function() {
               var tid = $sq(this).attr("id");
               $sq(".tsk_prep #prep_"+tid).delay(1000).fadeIn(200);
            },
        mouseleave:
            function() {
                var tid = $sq(this).attr("id");
                $sq(".tsk_prep #prep_"+tid).fadeOut(200);
            }
    });    
});
</script> <script>
(function($) {
    $.fn.extend({
        slide: function(options) {
            var defaults = {
                pad_out: 25,
                pad_in: 15,
                time: 150,
                multiplier: .8
            }
 
            var ops = $.extend(defaults, options);
 
            return this.each(function() {
 
                var $list_elements = $(this).find('li');
                var $link_elements = $list_elements.find('a');
                var timer = 0;
 
                $list_elements.each(function() {
                    //$(this).css("margin-left","-180px");
                    timer = (timer*ops.multiplier + ops.time);
                    $(this).animate({ marginLeft: "1px" }, timer);
                    //$(this).animate({ marginLeft: "845px" }, timer);
                    $(this).animate({ marginLeft: "1px" }, timer);
                });
 
                $link_elements.each(function() {
                    $(this).hover(
                        function() {
                            $(this).animate({ paddingLeft: ops.pad_out }, 150);
                        },
                        function() {
                            $(this).animate({ paddingLeft: ops.pad_in }, 150);
                        }
                    );
                });
            });
        }
    });
})(jQuery);
</script>
Reply With Quote
  #29  
Old 07-05-2012, 11:44 AM
Dragonsys Dragonsys is offline
Senior Member
 
Join Date: Jan 2008
Location: Atlanta, GA
Posts: 444
Default

and the CSS (which I would put in the addtional.css template)
Code:
/*--------- sliding menu css ----------------*/ 

#navigation-block {
	position:relative;
	top:0px;
	left:0px;
       
}

ul#sliding-navigation
{
	list-style: none;
	font-size: .75em;
	margin: 0px 0;
	padding: 0;
}

ul#sliding-navigation li.sliding-element h3{
       
        z-index:10000;
	display: block;
	width: 166px;
	padding: 5px 10px;
	margin: 0;
	margin-bottom: 0px;
}
ul#sliding-navigation li.sliding-element a{
        font-size:12px!important;
        z-index:10000;
	display: block;
	/*width: 155px;*/
	padding: 5px 15px;
	margin: 0;
	margin-bottom: 0px;
}

ul#sliding-navigation li.sliding-element h3
{
	color: #c81919;font-size:12px;
        background-color:#550801;
        background-image: url(images/47ronind3/47ronind3_blockheadbg.png);
        background-repeat: repeat-x;
        font-weight: normal;
}

ul#sliding-navigation li.sliding-element a
{
	color: #CCC;
        background-color:#060606;
        background-image: url(images/47ronind3/47ronind3_alt1.png) ;
        background-position:bottom left;
        background-repeat: repeat-x;
	border: 1px solid #1b1814;
	text-decoration: none;
}

ul#sliding-navigation li.sliding-element a:hover { color: #c81919; }


/* newpage */
.newpagewrap{
	height: auto;
	width: 100%;
        position:relative;clear:both;
}
.newpageL {
	height: auto;
	float: left;
	width: 190px;
	
}
.newpageC{  
    vertical-align:top;
	margin-top: 0;
	margin-right: 190px;
	margin-bottom: 0px;
	margin-left: 190px;

}

.newpageR {
	position:relative;
	height: auto;
	float: right;
	width: 190px;

}
Reply With Quote
  #30  
Old 07-06-2012, 10:50 AM
LaBella's Avatar
LaBella LaBella is offline
The Jerzee Devil
 
Join Date: Nov 2005
Posts: 29
Default

You guys are too smart for me!
__________________
JerzeeDevil Forums
Reply With Quote
  #31  
Old 07-06-2012, 07:10 PM
thecore762 thecore762 is offline
Member
 
Join Date: Jul 2008
Posts: 73
Default

Quote:
Originally Posted by Dragonsys View Post
and the CSS (which I would put in the addtional.css template)
Code:
/*--------- sliding menu css ----------------*/ 

#navigation-block {
	position:relative;
	top:0px;
	left:0px;
       
}

ul#sliding-navigation
{
	list-style: none;
	font-size: .75em;
	margin: 0px 0;
	padding: 0;
}

ul#sliding-navigation li.sliding-element h3{
       
        z-index:10000;
	display: block;
	width: 166px;
	padding: 5px 10px;
	margin: 0;
	margin-bottom: 0px;
}
ul#sliding-navigation li.sliding-element a{
        font-size:12px!important;
        z-index:10000;
	display: block;
	/*width: 155px;*/
	padding: 5px 15px;
	margin: 0;
	margin-bottom: 0px;
}

ul#sliding-navigation li.sliding-element h3
{
	color: #c81919;font-size:12px;
        background-color:#550801;
        background-image: url(images/47ronind3/47ronind3_blockheadbg.png);
        background-repeat: repeat-x;
        font-weight: normal;
}

ul#sliding-navigation li.sliding-element a
{
	color: #CCC;
        background-color:#060606;
        background-image: url(images/47ronind3/47ronind3_alt1.png) ;
        background-position:bottom left;
        background-repeat: repeat-x;
	border: 1px solid #1b1814;
	text-decoration: none;
}

ul#sliding-navigation li.sliding-element a:hover { color: #c81919; }


/* newpage */
.newpagewrap{
	height: auto;
	width: 100%;
        position:relative;clear:both;
}
.newpageL {
	height: auto;
	float: left;
	width: 190px;
	
}
.newpageC{  
    vertical-align:top;
	margin-top: 0;
	margin-right: 190px;
	margin-bottom: 0px;
	margin-left: 190px;

}

.newpageR {
	position:relative;
	height: auto;
	float: right;
	width: 190px;

}
Thanks!
Reply With Quote
  #32  
Old 07-06-2012, 07:14 PM
thecore762 thecore762 is offline
Member
 
Join Date: Jul 2008
Posts: 73
Default

I might consider releasing the XML to the public for easier install. The whole thing was customized for my needs, so I wouldn't know if it would match with everyone's site.
Reply With Quote
  #33  
Old 07-09-2012, 12:57 PM
SouthpawK SouthpawK is offline
Member
 
Join Date: Aug 2008
Location: Georgia
Posts: 93
Default

OK...just a couple stupid newbie questions.....

Do I need to make a new file to put the jquery stuff in? Also, is the something that you have to download and upload for the jquery? Told you they were stupid newbie questions.

And do you just make and upload a color block for the links to come out from? If so, what size should the block be?

And how can I change the color of the menu itself and/or the tiltle bars like "Homepage" on the 47 Ronin site?

I'm getting there but need these answers, please.

Thank you...
Reply With Quote
  #34  
Old 07-09-2012, 06:44 PM
Dragonsys Dragonsys is offline
Senior Member
 
Join Date: Jan 2008
Location: Atlanta, GA
Posts: 444
Default

Quote:
Originally Posted by SouthpawK View Post
OK...just a couple stupid newbie questions.....

Do I need to make a new file to put the jquery stuff in? Also, is the something that you have to download and upload for the jquery? Told you they were stupid newbie questions.

And do you just make and upload a color block for the links to come out from? If so, what size should the block be?

And how can I change the color of the menu itself and/or the tiltle bars like "Homepage" on the 47 Ronin site?

I'm getting there but need these answers, please.

Thank you...
Put the jquery code in your headerinclude template. Nothing to download, just copy & paste it.

It is CSS, any images used are listed inside of the above CSS code

Edit the CSS code posted above to match the colors of your site.
Reply With Quote
  #35  
Old 07-09-2012, 10:02 PM
SouthpawK SouthpawK is offline
Member
 
Join Date: Aug 2008
Location: Georgia
Posts: 93
Default

Quote:
Originally Posted by Dragonsys View Post
Put the jquery code in your headerinclude template. Nothing to download, just copy & paste it.

It is CSS, any images used are listed inside of the above CSS code

Edit the CSS code posted above to match the colors of your site.
Great...thank you. I'm going to give this a try tomorrow and hopefully I get it right. With your answer and all the others maybe I won't have any problems.

Thanks again...
Reply With Quote
  #36  
Old 07-09-2012, 11:16 PM
Dragonsys Dragonsys is offline
Senior Member
 
Join Date: Jan 2008
Location: Atlanta, GA
Posts: 444
Default

Quote:
Originally Posted by SouthpawK View Post
Great...thank you. I'm going to give this a try tomorrow and hopefully I get it right. With your answer and all the others maybe I won't have any problems.

Thanks again...
Good luck let us know how it goes
Reply With Quote
  #37  
Old 07-20-2012, 08:11 PM
thecore762 thecore762 is offline
Member
 
Join Date: Jul 2008
Posts: 73
Default

So...how things go for you guys?
Is it working for you guys?
Reply With Quote
  #38  
Old 07-30-2012, 03:45 AM
wolfman069 wolfman069 is offline
Junior Member
 
Join Date: Oct 2010
Posts: 4
Default

it toke me awhile to work it out but i love it thanx thecore762
Reply With Quote
  #39  
Old 08-09-2012, 10:55 PM
thecore762 thecore762 is offline
Member
 
Join Date: Jul 2008
Posts: 73
Default

Quote:
Originally Posted by wolfman069 View Post
it toke me awhile to work it out but i love it thanx thecore762
Anytime!
Wanna send me the link so I can check it out too? :P
Reply With Quote
  #40  
Old 08-09-2012, 11:20 PM
wolfman069 wolfman069 is offline
Junior Member
 
Join Date: Oct 2010
Posts: 4
Default

its been sent ive done some modifying to suit my theme but works great.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
how to add another seperate Site Navigation module. Magik "How Do I..." Questions 2 04-30-2007 10:24 AM
Site Navigation Module sensimilla Troubleshooting & Problems 8 11-22-2006 01:01 PM
Site Navigation module problems LiverpoolB "How Do I..." Questions 1 11-15-2006 02:25 PM
Site Navigation Module Exitilus Troubleshooting & Problems 2 10-12-2006 11:39 AM
site navigation module rsriverrat "How Do I..." Questions 1 02-02-2006 01:31 AM


All times are GMT -4. The time now is 08:07 PM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.