Forum Replies Created
-
AuthorPosts
-
February 27, 2016 at 12:18 pm in reply to: Cafe Pro Background image not responsive but zooms in. #180074
slybug
MemberSo is there a way to stop the focus and just show the image by shrinking it
I have tried adding a new image via css (shrunk down) and it focuses on that as well.very frustrating
slybug
MemberI see that but I can't see it on my end. stupid cache. I must struggle with that more than anything in the world.
I have firebug, I have done all of about config stuff and still my stupid computer caches, even looking at it in a private window still cache.
As of now I will have to take your word for it (or image) thank you for you help
slybug
MemberStill same effect
slybug
MemberSo here is the frustrating part. I have done that.
#header {
margin: 0 auto;
min-height: 220px;
width: 1140px;
background-image: rgba(0, 0, 0, 0) url("http://orlando-buyersagent.com/wp-content/uploads/2012/12/creamlogo.png") no-repeat scroll 2% 20%;
}And it removes the background-image on load. it is there now when I use firebug to look at it is removed
I have checked the site on two separate computers and it does the same thing.
February 9, 2016 at 11:57 am in reply to: Cafe Pro Background image not responsive but zooms in. #178671slybug
MemberThe Client didn't want the hamburger so this was my work around (and after a few days of going around if circles about it they won) do you have a better way. Yes that is what I am referring to. they want the same look as the desktop version with the full image background instead of the centering effect.
slybug
MemberIs there a way to change that
slybug
MemberI got this figured out I used a background responsive plugin and then removed the header on pages.
slybug
MemberThere is a bunch of white space that I want to use
http://bible.personalseo.com/product/warriors-bible/slybug
MemberThank you thank you thank you thank you..
slybug
MemberAll most there the only issue is that the menu is expanded on load
slybug
MemberI am click on appearance then editing style css (like normally)
slybug
MemberIn any case I added it this way:
.genesis-nav-menu.responsive-menu .menu-item, .responsive-menu-icon,
#responsive-menu-icon {
display: block;
}I also tried it by just adding the # version by itself and still nothing
slybug
MemberI know it is bad to do this live but even a missing menu is better than what it was when I started
slybug
MemberOH I have also tried disabling all the plugins and it still disappears
slybug
MemberThis is the copy of the .js file:
jQuery(function( $ ){$("header .genesis-nav-menu, .nav-primary .genesis-nav-menu, .nav-secondary .genesis-nav-menu").addClass("responsive-menu").before('<div class="responsive-menu-icon"></div>');
$(".responsive-menu-icon").click(function(){
$(this).next("header .genesis-nav-menu, .nav-primary .genesis-nav-menu, .nav-secondary .genesis-nav-menu").slideToggle();
});$(window).resize(function(){
if(window.innerWidth > 768) {
$("header .genesis-nav-menu, .nav-primary .genesis-nav-menu, .nav-secondary .genesis-nav-menu, nav .sub-menu").removeAttr("style");
$(".responsive-menu > .menu-item").removeClass("menu-open");
}
});$(".responsive-menu > .menu-item").click(function(event){
if (event.target !== this)
return;
$(this).find(".sub-menu:first").slideToggle(function() {
$(this).parent().toggleClass("menu-open");
});
});});
it is not referring to the #responsive-menu but the .responsive-menu... I included both in the css the # version and the . version and still nothing
slybug
MemberOK I have done everything and still no menu...
GRR
I again downloaded the latest css in copied over mine (then copied back the custom style which was very little) Every thing that was missing I now confirmed it to be there and still nothingslybug
MemberSorry I meant to say that I downloaded the latest CSS and copied over mine. To try and fix this issue it so it is the latest CSS
slybug
Memberoh I also just recently reinstalled the style.css with the orginal one and still nothing
slybug
MemberThank you so much that is exactly what I was looking for.. You da man! I have spent a few days looking for this solution.
slybug
MemberOK so I found this:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $current_cat = get_query_var( 'cat' ); $args = array( 'orderby' => 'rand', 'cat' => $current_cat, 'paged' => $paged, ); query_posts($args); ?>I add this to the category.php and change the
'cat' => $current_cat
to
'cat' =>is_category( 'hotels-and-motels' )Right?
Never done this before so I could be very wrong.
I also have to do this for 12 different categories
-
AuthorPosts