Andykev

Forum Replies Created

Viewing 50 posts - 151 through 200 (of 266 total)
  • Author
    Posts
  • in reply to: Site Not Sized Correctly For Mobile #16685
    Andykev
    Customer

      Hi Tim,

      Both the example sites look identical on my Iphone. No black spaces on side. What site are you working on, or do you have this happening to yours?

      in reply to: body.home background image – mobile #16682
      Andykev
      Customer

        Change line 1468 to 100%

        .welcome-features .wrap {
            background-color: transparent;
            margin: 0 auto;
            overflow: hidden;
            padding: 50px 0 10px;
            width: 100%;
        }

        This replaces the fixed pixel width.
        Your picture will size properly.

        in reply to: Legacy doesn't have the code for mobile menu icon? #16679
        Andykev
        Customer

          If your questin is “how to add” a responsive “hamburger” menu on smaller screens, no…you cannot paste in the .CSS from another theme. There is a lot more to do.

          Here is how to add the necessary functions and files to make it happen. The codes explained in the tutiorial below are what I used to add a “responsive” menu to Legacy. Yes, the menu does adjust to the small screenm but it is “stacked”. I wanted the same look and funcion as Epik, so I used this.

          https://wpbeaches.com/using-slick-responsive-menus-genesis-child-theme/

          in reply to: Legacy doesn't have the code for mobile menu icon? #16678
          Andykev
          Customer

            Is something not working for you on the theme? Or trying to do something different?

            I have both themes and each works wonderfully.

            in reply to: URGENT – Visual editor doesn't work anymore! #16663
            Andykev
            Customer

              I strongly recommend you immediately change your log in password and user name. ANYONE now has it.

              Use the Privat Message to share it, and set up a TEMPORARY USER ACCOUNT.

              Your site is at risk otherwise.

              Andykev
              Customer

                Jonathon,

                Add this to your .css and it fixes your problem. I tried it and success!

                .header-image .site-title a {
                background-size: contain !important;
                }
                in reply to: Woo Commerce #16643
                Andykev
                Customer

                  I figured it out. Staring right at me. The site BLOG setting was at “show 1 post”. Set it to 10 and all is good now.

                  I really was deep into reading .php and .css for woocommerce and trying to find some complex reason.
                  Took a break and came back to look at the basics.

                  in reply to: Center Logo for Mobile #16630
                  Andykev
                  Customer

                    Try this:

                    .header-image .site-title a {
                    	float: left;
                    	min-height: 164px;
                    	width: 110%;
                    }

                    Line 2055 of the css
                    Adding 10% to the width does tweak it to center, but not perfectly. Might try if you don’t want to edit the logo image.

                    in reply to: Center Logo for Mobile #16629
                    Andykev
                    Customer

                      Yes, the padding is off and it does appear slightly to the left.

                      The program .css is working fine on small screens, and does center. However, it “looks” off center because the image part of the (360 x 164) “block” is not centered.

                      You should go to an image editor and center the actual “logo” in the “block”, ie. move it over to the right just a bit, in the center of the 360 width.

                      You don’t notice it on wide screens because it is “floated” to the left. When the screen is reduced to Iphone size you can tell it’s off.

                      The footer logo centers beautifully at the bottom. It’s 358 x 166, but the text and logo look more centered in the “box” or “frame” size.

                      in reply to: Responsive sticky menu #16625
                      Andykev
                      Customer

                        Rik,
                        Please post a link to your site so we can see what is going on. 🙂

                        in reply to: Logo space & background again #16620
                        Andykev
                        Customer

                          🙂 Glad you got it worked out!!

                          in reply to: Logo space & background again #16617
                          Andykev
                          Customer

                            The last part is missing from your .css, so when you edit your style.css be sure to SAVE to retain the changes. Or you can do the same from your C-Panel via your provider, edit the file there as well.

                            in reply to: Logo space & background again #16616
                            Andykev
                            Customer

                              This code is missing from your .CSS put it back in and save.

                              If you scroll to your Responsive section of your CSS file, you’ll come across the max-width: 1023px section. Place this code inside that area so that it will override the code we added before –

                              .custom-header .site-container .site-header {
                              background-position: center top !important;
                              }

                              in reply to: Align Nav Bar Right #16603
                              Andykev
                              Customer

                                Easy! You have “white” (#fff;) selected and thus it does not show!

                                .responsive-menu-icon::before {
                                	color: #999;
                                	content: "\f333";
                                	font: normal 32px/1 'dashicons';
                                	margin: 0 auto;
                                }

                                Go to line 2281 of your theme .CSS and change “fff” (white) to “999” (black). Or whatever color which will not wash out with the white background.

                                in reply to: Align Nav Bar Right #16601
                                Andykev
                                Customer

                                  Hi Debra,

                                  Do you have a link so we can see what’s going on? 🙂

                                  in reply to: Is there a Legacy Demo setup guide ?. #16586
                                  Andykev
                                  Customer

                                    The link to the Legacy demo is

                                    http://demo.appfinite.net/legacy/

                                    All the pages are typical Genesis layout. The home page is wigitized. When I build my site, I placed a plain text widget in each area and saw immediately which ones I needed, and were they were located.

                                    Are you trying to import images and text from each area?

                                    in reply to: Button Colors #16565
                                    Andykev
                                    Customer

                                      The button looks the same to me desktop and mobile.

                                      If you want to add some color to the menu on mobile, the “hamburger”, to make it match your button color, try this on line 4242 of your CSS:

                                      	.genesis-nav-menu.responsive-menu .menu-item,
                                      	.responsive-menu-icon {
                                      		display: block;
                                      		background: #0493b1 !important;
                                      	}

                                      It makes the little menu bar loyelblue. You can do just the text to blue as well and retain the black background with this at line 4252:

                                      .genesis-nav-menu.responsive-menu li.current-menu-item > a,
                                      	.genesis-nav-menu.responsive-menu .sub-menu li.current-menu-item > a:hover,
                                      	.genesis-nav-menu.responsive-menu li a,
                                      	.genesis-nav-menu.responsive-menu li a:hover {
                                      		border: none;
                                      		display: block;
                                      		padding: 20px;
                                      		text-transform: none;
                                      		color: #0493b1 !important;
                                      	}<!--formatted-->

                                      If you want the blue menu bar, you need to change the text to perhaps white in 4252 or they are the same and wash out.

                                      All the menu stuff is in the @media section, which fires up when screen size goes below 767px
                                      (@media only screen and (max-width: 767px)).

                                      The buttons should not change color when size is reduced. Cache perhaps?

                                      EDIT: worked on desktop and with shrinking screen, not on Iphone. I had to go out/in on the phone to reload, and yes, your button is showing up blue on my phone. Nice job!

                                      in reply to: Genesis Responsive Menu Icon #16533
                                      Andykev
                                      Customer

                                        Ok Bonnie That is the above solution to your responsive menu, the incorrect text colors, and the line spacing to the responsive menu.

                                        Good Luck and Happy Computing!

                                        in reply to: Genesis Responsive Menu Icon #16529
                                        Andykev
                                        Customer

                                          Ficed it. Your “special modification” you added to the “epic red” css, need to change it to this:

                                          .epik-red .genesis-nav-menu a {
                                          	color:#3c3e3f;
                                          	font-family:'Helvetica W01 Light Cn',sans-serif;
                                          	font-size:15px;
                                          	font-weight:400;
                                          	letter-spacing:1px;
                                          	text-transform:uppercase;
                                          	vertical-align:top;
                                          	margin-top:10px
                                          }

                                          The key part is ” margin-top:10px “. You had it at 110 which did lower your menu down from the page top on a regular screen, but that spacing as coded carried over to the responsive menu, giving you unacceptable space between the menu items. Looks good now.

                                          in reply to: Genesis Responsive Menu Icon #16528
                                          Andykev
                                          Customer

                                            You also need to fix this on line 4305:

                                            	.site-header .genesis-nav-menu.responsive-menu a:hover {
                                            		color: #999;
                                            	}

                                            On your theme “responsive menu” (small screens) the hover does not work. Why? You set the hover color to white so moving the mouse over it causes the text to disappear. The white color is the correct color for the “theme color” you selected (RED) but you modified elsewhere, so changing the background color to white (you removed the red), thus you also need to change the text to a contrasting color.

                                            in reply to: Genesis Responsive Menu Icon #16527
                                            Andykev
                                            Customer

                                              No it is not normal. You have changed the look of your site from the original theme. The responsive menu is different.

                                              If you remove this at line 1338

                                              .welcome-features .wrap {
                                                  margin: 0 auto;
                                                  overflow: hidden;
                                                  padding: 120px 0 60px;
                                                  width: 1140px;
                                              }

                                              It lessens the gap between the header and the lower content. That container (the area being wrapped) is not being used in your modified theme.

                                              in reply to: Genesis Responsive Menu Icon #16525
                                              Andykev
                                              Customer

                                                Your header logo inmage also is getting cut off when it shrinks to smaller screens.

                                                Adding this:

                                                .header-image .site-title a {
                                                background-size: contain !important;
                                                }

                                                It fixes that problem. I am still looking at your code. I FOUND IT!

                                                .responsive-menu-icon::before {
                                                	color: #999;
                                                	content: "\f333";
                                                	font: normal 32px/1 'dashicons';
                                                	margin: 0 auto;
                                                }

                                                You had color set as #fff which is why it is not showing up! I changed it to #999 and voila!

                                                in reply to: Genesis Responsive Menu Icon #16522
                                                Andykev
                                                Customer

                                                  No, do not change those files. I only asked if you did. Those are in your functions.php.

                                                  I had the .css changes working and the little hamburger showed up properly. I just checked and now it is not showing..so unsure. Too late tonight to think clearly…

                                                  in reply to: Genesis Responsive Menu Icon #16518
                                                  Andykev
                                                  Customer

                                                    Did you change the j.querry, or any PHP files regarding the menu or media?

                                                    Here is the original EPIK style.css Note it contains the @media in the bottom section.

                                                    /*
                                                    Media Queries
                                                    ---------------------------------------------------------------------------------------------------- */
                                                    
                                                    /* Desktops, laptops and iPads (landscape)
                                                    --------------------------------------------- */
                                                    
                                                    @media only screen and (max-width: 1180px) {
                                                    
                                                    	.wrap,
                                                    	.site-header {
                                                    		max-width: 960px;
                                                    	}
                                                    
                                                    	.content-sidebar-sidebar .content-sidebar-wrap,
                                                    	.sidebar-content-sidebar .content-sidebar-wrap,
                                                    	.sidebar-sidebar-content .content-sidebar-wrap {
                                                    		width: 740px;
                                                    	}
                                                    
                                                    	.content,
                                                    	.site-header .widget-area {
                                                    		width: 620px;
                                                    	}
                                                    
                                                    	.sidebar-content-sidebar .content,
                                                    	.sidebar-sidebar-content .content,
                                                    	.content-sidebar-sidebar .content {
                                                    		width: 400px;
                                                    	}
                                                    
                                                    	.sidebar-primary,
                                                    	.title-area {
                                                    		width: 300px;
                                                    	}
                                                    	
                                                    	.hf1,
                                                    	.hf3,
                                                    	.hf4,
                                                    	.hf5,
                                                    	.hf6,
                                                    	.hf7,
                                                    	.hf8,
                                                    	.hf9,
                                                    	.hf14 {
                                                    		/*background-attachment: scroll;*/
                                                    		background-position: top;
                                                    		-webkit-background-size: auto;
                                                    		-moz-background-size: auto;
                                                    		background-size: auto;
                                                    	}
                                                    
                                                    }
                                                    
                                                    /* iPads (portrait)
                                                    --------------------------------------------- */
                                                    
                                                    @media only screen and (max-width: 1023px) {
                                                    
                                                    	.content,
                                                    	.content-sidebar-sidebar .content,
                                                    	.content-sidebar-sidebar .content-sidebar-wrap,
                                                    	.sidebar-content-sidebar .content,
                                                    	.sidebar-content-sidebar .content-sidebar-wrap,
                                                    	.sidebar-primary,
                                                    	.sidebar-secondary,
                                                    	.sidebar-sidebar-content .content,
                                                    	.sidebar-sidebar-content .content-sidebar-wrap,
                                                    	.site-header .widget-area,
                                                    	.title-area,
                                                    	.wrap {
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.site-header,
                                                    	.nav-primary .wrap,
                                                    	.nav-secondary .wrap,
                                                    	.slider .wrap,
                                                    	.welcome .wrap,
                                                    	.home-feature-bg .wrap,
                                                    	.home-feature-bg-alt .wrap,
                                                    	.home-feature-bg-dark .wrap,
                                                    	.footer-widgets .wrap {
                                                    		width: 90%;
                                                    	}
                                                    	
                                                    	.title-area {
                                                    		padding: 16px 0;
                                                    	}
                                                    	
                                                    	.header-image .site-header,
                                                    	.header-image .site-header .wrap {
                                                    		background-position: center top !important;
                                                    	}
                                                    	
                                                    	.site-header .widget-area {
                                                    		text-align: center;
                                                    	}
                                                    
                                                    	.site-inner {
                                                    		padding-left: 5%;
                                                    		padding-right: 5%;
                                                    	}
                                                    
                                                    	.site-inner {
                                                    		background: none;
                                                    	}
                                                    	
                                                    	.nav-primary {
                                                    		background-repeat: repeat-y;
                                                    	}
                                                    
                                                    	.genesis-nav-menu li,
                                                    	.genesis-nav-menu > .right,
                                                    	.site-header ul.genesis-nav-menu,
                                                    	.site-header .search-form {
                                                    		float: none;
                                                    	}
                                                    
                                                    	.genesis-nav-menu,
                                                    	.site-description,
                                                    	.site-header hgroup,
                                                    	.site-header .search-form,
                                                    	.site-title {
                                                    		text-align: center;
                                                    	}
                                                    	
                                                    	.genesis-nav-menu .menu-item {
                                                    		display: inline-block;
                                                    		float: none;
                                                    	}
                                                    
                                                    	.genesis-nav-menu a,
                                                    	.genesis-nav-menu > .first > a,
                                                    	.genesis-nav-menu > .last > a { }
                                                    	
                                                    
                                                    	.site-header .search-form {
                                                    		margin: 16px auto ;
                                                    	}
                                                    
                                                    	.sidebar .widget.enews-widget {
                                                    		padding: 40px;
                                                    	}
                                                    	
                                                    	.wp-caption {
                                                    		width: 100% !important;
                                                    	}
                                                    	
                                                    	.footer-widgets .widget {
                                                    		margin-bottom: 40px;
                                                    	}
                                                    
                                                    }
                                                    
                                                    /* iPad/Tablets (portrait and landscape)
                                                    --------------------------------------------- */
                                                    
                                                    @media only screen and (max-width: 960px) {
                                                    
                                                    	.feature-margin {
                                                    		margin: 0;
                                                    	}
                                                    
                                                    }
                                                    
                                                    /* iPhones (portrait and landscape)
                                                    --------------------------------------------- */
                                                    
                                                    @media only screen and (max-width: 767px) {
                                                    
                                                    	.home-feature-3,
                                                    	.home-feature-4,
                                                    	.home-bottom-sidebar-1,
                                                    	.home-bottom-sidebar-2,
                                                    	.home-bottom-sidebar-3,
                                                    	.home-bottom-sidebar-4,
                                                    	.footer-widgets-1,
                                                    	.footer-widgets-2,
                                                    	.footer-widgets-3,
                                                    	.five-sixths,
                                                    	.four-fifths,
                                                    	.four-sixths,
                                                    	.one-fifth,
                                                    	.one-fourth,
                                                    	.one-half,
                                                    	.one-sixth,
                                                    	.one-third,
                                                    	.three-fifths,
                                                    	.three-fourths,
                                                    	.three-sixths,
                                                    	.two-fifths,
                                                    	.two-fourths,
                                                    	.two-sixths,
                                                    	.two-thirds {
                                                    		margin: 0;
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.genesis-nav-menu.responsive-menu {
                                                    		display: none;
                                                    	}
                                                    
                                                    	.nav-primary .responsive-menu-icon {
                                                    		margin-top: 20px;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .menu-item,
                                                    	.responsive-menu-icon {
                                                    		display: block;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .menu-item:hover {
                                                    		position: static;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu li.current-menu-item > a,
                                                    	.genesis-nav-menu.responsive-menu .sub-menu li.current-menu-item > a:hover,
                                                    	.genesis-nav-menu.responsive-menu li a,
                                                    	.genesis-nav-menu.responsive-menu li a:hover {
                                                    		border: none;
                                                    		display: block;
                                                    		padding: 20px;
                                                    		text-transform: none;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .menu-item-has-children {
                                                    		cursor: pointer;	
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .menu-item-has-children > a {
                                                    		margin-right: 60px;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
                                                    		content: "\f347";
                                                    		float: right;
                                                    		font: normal 20px/1 'dashicons';
                                                    		height: 20px;
                                                    		padding: 15px 20px;
                                                    		right: 0;
                                                    		text-align: right;
                                                    		z-index: 9999;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .menu-open.menu-item-has-children:before {
                                                    		content: "\f343";
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu > .menu-item > .sub-menu {
                                                    		display: none;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .sub-menu {
                                                    		background-color: rgba(0, 0, 0, 0.05);
                                                    		left: auto;
                                                    		opacity: 1;
                                                    		position: relative;
                                                    		-moz-transition:    opacity .4s ease-in-out;
                                                    		-ms-transition:     opacity .4s ease-in-out;
                                                    		-o-transition:      opacity .4s ease-in-out;
                                                    		-webkit-transition: opacity .4s ease-in-out;
                                                    		transition:         opacity .4s ease-in-out;
                                                    		width: 100%;
                                                    		z-index: 99;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .sub-menu .sub-menu {
                                                    		margin: 0;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .sub-menu li a,
                                                    	.genesis-nav-menu.responsive-menu .sub-menu li a:hover {
                                                    		padding: 20px;
                                                    		position: relative;
                                                    		text-transform: none;
                                                    		width: 100%;
                                                    	}
                                                    
                                                    	.genesis-nav-menu.responsive-menu .current-menu-item > a,
                                                    	.genesis-nav-menu.responsive-menu .sub-menu .current-menu-item > a:hover,
                                                    	.genesis-nav-menu.responsive-menu > li.menu-item-has-children:hover > a,
                                                    	.genesis-nav-menu.responsive-menu a:hover {
                                                    		background: none;
                                                    	}
                                                    
                                                    	.site-header .genesis-nav-menu.responsive-menu .current-menu-item > a,
                                                    	.site-header .genesis-nav-menu.responsive-menu .sub-menu li a,
                                                    	.site-header .genesis-nav-menu.responsive-menu .sub-menu li a:hover,
                                                    	.site-header .genesis-nav-menu.responsive-menu .sub-menu,
                                                    	.site-header .genesis-nav-menu.responsive-menu > .menu-item-has-children:before,
                                                    	.site-header .genesis-nav-menu.responsive-menu > li:hover > a,
                                                    	.site-header .genesis-nav-menu.responsive-menu a:hover {
                                                    		color: #fff;
                                                    	}
                                                    
                                                    	.nav-primary .genesis-nav-menu.responsive-menu .sub-menu,
                                                    	.site-header .genesis-nav-menu.responsive-menu .sub-menu {
                                                    		background-color: rgba(255, 255, 255, 0.05);
                                                    	}
                                                    	
                                                    	.feature-left,
                                                    	.feature-right {
                                                    		width: 45%;
                                                    	}
                                                    	
                                                    	.home-feature-10,  
                                                    	.home-feature-12 {
                                                    		width: 48%;
                                                    	}
                                                    	
                                                    	.home-feature-11,
                                                    	.home-feature-13 {
                                                    		float: right;
                                                    		margin: 0;
                                                    		width: 48%;
                                                    	}
                                                    	
                                                    	.home-feature-12 {
                                                    		clear: both;
                                                    	}
                                                    
                                                    	.search-form {
                                                    		width: 80%;
                                                    	}
                                                    	
                                                    	.content .portfolio {
                                                    		width: 48%;
                                                    	}
                                                    	
                                                    	.content .portfolio .post-image {
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.home-feature-10 img, 
                                                    	.home-feature-11 img, 
                                                    	.home-feature-12 img, 
                                                    	.home-feature-13 img {
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.plan-col, 
                                                    	.plan-col-popular {	
                                                    		float: none;
                                                    		margin: 0 auto 40px;	
                                                    		width: 80%;
                                                    	}
                                                    
                                                    }
                                                    
                                                    @media only screen and (max-width: 580px) {
                                                    
                                                    	.home .wrap {
                                                    		text-align: center;	
                                                    	}
                                                    	
                                                    	.site-header .wrap {
                                                    		width: 90%;
                                                    	}
                                                    	
                                                    	.welcome-feature-1, 
                                                    	.welcome-feature-2,
                                                    	.welcome-feature-3,
                                                    	.home-feature-1,
                                                    	.home-feature-2,
                                                    	.home-feature-3,
                                                    	.home-feature-4,
                                                    	.home-feature-1,
                                                    	.home-feature-2,
                                                    	.home-feature-3,
                                                    	.home-feature-4,
                                                    	.home-feature-5,
                                                    	.home-feature-6,
                                                    	.home-feature-7,
                                                    	.home-feature-8,
                                                    	.home-feature-9,
                                                    	.home-feature-10,
                                                    	.home-feature-11,
                                                    	.home-feature-12,
                                                    	.home-feature-13,
                                                    	.home-feature-14 {
                                                    		margin: 0 auto;
                                                    	    text-align: center;
                                                    	    width: 100%;
                                                    	}
                                                    	
                                                    	.feature-left {
                                                    		float: none;
                                                    		margin: 0 auto;
                                                    		text-align: center;
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.feature-right {
                                                    		float: none;
                                                    		margin: 40px auto 0;
                                                    		text-align: center;
                                                    		width: 100%;
                                                    	}
                                                    
                                                    }
                                                    
                                                    @media only screen and (max-width: 480px) {
                                                    
                                                    	.site-header {
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.content .portfolio {
                                                    		text-align: center;
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.content .portfolio .post-image {
                                                    		width: 100%;
                                                    	}
                                                    	
                                                    	.content .portfolio .more-link {
                                                    		margin: 20px auto 0;
                                                    		padding: 6px;
                                                    		width: 60%;
                                                    	}
                                                    	
                                                    }

                                                    This is the part of the .css which handles the resizing of the menu on small screens. You also have to have the functions properly configured as well.

                                                    This must be in your Theme Functions PHP file:

                                                    //* Enqueue Scripts/Styles
                                                    add_action( 'wp_enqueue_scripts', 'epik_enqueue_scripts_styles' );
                                                    function epik_enqueue_scripts_styles() {
                                                    
                                                    	wp_enqueue_script( 'epik-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
                                                    	wp_enqueue_style( 'dashicons' );
                                                    	wp_enqueue_style( 'google-font', '//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700', array(), PARENT_THEME_VERSION );
                                                    	wp_enqueue_style( 'prefix-font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css', array(), '4.0.3' );
                                                    	
                                                    }
                                                    in reply to: Genesis Responsive Menu Icon #16515
                                                    Andykev
                                                    Customer

                                                      Unless you have some plugin, or something which is preventing you from editing a file, anyone logging into your website control panel and going to “EDITOR” will be able to modify the theme files. I applied the above “@media” to your theme using the “inspect element” and it worked like a charm. Unfortunately those changes vanish once you refresh the browser.

                                                      I assume you’ve cleared your Cache file or similar if you are using one? Other than that, changing your style.css should be no problem.

                                                      The only suggestion is to make a temporary login for access. If you only want Wes, ok. There are several good customers here who have given me, and others, answers to their questions. Actually Wes relies on this “community” for that purpose. Anyway…I hope you figure it out as to why you cannot edit.

                                                      in reply to: Genesis Responsive Menu Icon #16513
                                                      Andykev
                                                      Customer

                                                        Confusing. In Epik, I can go to Dashboard-Appearance-Editor. Make sure you’re editing the EPIK theme from the upper drop down. Then go to the Style.css and scroll to the bottom section and you can add the “@media” to the areas in question…then SAVE. Don’t know why it isn’t working for you.

                                                        in reply to: Genesis Responsive Menu Icon #16511
                                                        Andykev
                                                        Customer

                                                          You are changing the css in your Dashboard – Appearance – Editor?

                                                          Open the style.css

                                                          fix the @media part missing from the bottom and SAVE.

                                                          If you try to fix it on the web browser “inspect element” it will not work. That is only to try stuff and not change your actual css. Sorry if this is a silly reply to you, but that sounds like what happened.

                                                          Whenever you actually change your CSS or any code, be sure you made a COPY and save it as a text file. I learned this the hard way when I was trying to fix stuff, and you are sometimes rewarded with the WSOD (white screen of death). Simple omissions or typos can KILL your site..like a missing “:” made the menu not work for you.

                                                          I tried the “FIX” on your website using “inspect element” and going to your CSS. However refreshing the screen reverts back to what you have in your website file.

                                                          in reply to: Genesis Responsive Menu Icon #16509
                                                          Andykev
                                                          Customer

                                                            Something happened to the CSS in your theme. OK here is what is missing:

                                                            @media

                                                            *
                                                            Media Queries
                                                            ---------------------------------------------------------------------------------------------------- */
                                                            
                                                            /* Desktops, laptops and iPads (landscape)
                                                            --------------------------------------------- */
                                                             only screen and (max-width: 1180px) {

                                                            In the bottom section of your CSS dealing with Media Queries…

                                                            it should be like this:

                                                            /*
                                                            Media Queries
                                                            ---------------------------------------------------------------------------------------------------- */
                                                            
                                                            /* Desktops, laptops and iPads (landscape)
                                                            --------------------------------------------- */
                                                            
                                                            @media only screen and (max-width: 1180px) {
                                                            

                                                            So the “@media” is missing before the code on the following lines of your css:

                                                            4076
                                                            4176
                                                            4367
                                                            4418

                                                            That is why your menu is not working correctly when the screen is resized for smaller screens.
                                                            Please put that back in and it fixes it, and will test ok.

                                                            in reply to: Genesis Responsive Menu Icon #16507
                                                            Andykev
                                                            Customer

                                                              And the other questions about the “Genesis Icon” menu (AKA the “hamburger”). It is set to trigger below a certain screen size. The code makes your regular menu vanish and the “hamburger” is shown in place of your regular menu. Not all themes do this.

                                                              My Legacy theme did not have this feature, so when the screen was reduced (like viewing on a smart phone or Ipad) the normal menu simply reordered itself and was present in text form. I wanted it to be like the Epik theme and when the screen was reduced, the hamburger appeared. Then on a smart phone you can tap it and pull up your full menu in a drop down list.

                                                              in reply to: Genesis Responsive Menu Icon #16505
                                                              Andykev
                                                              Customer

                                                                You are missing one thing, the “:”

                                                                /* Responsive Menu
                                                                --------------------------------------------- */
                                                                
                                                                .responsive-menu-icon {
                                                                	cursor: pointer;
                                                                	display: none;
                                                                	margin-bottom: 10px;
                                                                }
                                                                

                                                                Add that and the “hamburger” icon menu disappears. Its around line 2276 of your CSS

                                                                Careful about cut and paste from one theme to another, sometimes the theme CSS requires a file in your Theme PHP. Didn’t look at all your code, just the problem you asked about, making the icon go away.

                                                                Do you want it to appear on Iphone, or tablet sized displays?

                                                                in reply to: More Welcome Features #16492
                                                                Andykev
                                                                Customer

                                                                  You have to add code to the CSS to make them proper sized (1/5 each)…below this part:

                                                                  /*
                                                                  Add To Media Queries – @media only screen and (max-width: 767px)
                                                                  ——————————————————————- */

                                                                  The original container area is currently divided for three. You will need to add the two new and change the percentage for the width.

                                                                  in reply to: More Welcome Features #16489
                                                                  Andykev
                                                                  Customer

                                                                    However, I just remembered you can’t use column classes in this theme to make “5”.

                                                                    Due to the grid layout, Genesis drops support of the fifths class family (one-fifth, two-fifths, three-fifths, and four-fifths). This is logical since the grid that Genesis adopts is from Twitter Bootstrap, and they didn’t include it. Since the Bootstrap grid was based on 12 columns, fifths does not naturally “fit” within the grid. 1, 2, 3, 4 and 6 are equally divisible into 12.

                                                                    Three, Four, or Six will work. Changing to allow 5 will cause all sorts of trouble with the theme. WARNING adding the “column classes” from Genesis you can get off some of the sites and adding it to the CSS in your theme (tacking it on) will get you the WSOD.

                                                                    Five columns is getting small for a home page. Three or four are better. It depends what you are putting in there.

                                                                    in reply to: More Welcome Features #16488
                                                                    Andykev
                                                                    Customer

                                                                      This is not easily done unless you are comfortable with the basic Geneis process (codes). You have to register the new widget, and also create or modify the CSS so they display correctly.

                                                                      IF you want to change it from three “welcome” features to more, that will be some work.

                                                                      IF you just want to have them “stacked” you simply add more widgets to that “container” area.

                                                                      If you have looked at the tutorials on several sites you likely have an idea of what is involved to change the theme to a modified theme.

                                                                      Let me suggest that you can as an alternative, use the “welcome wide” or the “home feature 3” areas and use the column classes (use five of them) and you can easily put five things there.

                                                                      in reply to: Align Nav Bar Right #16467
                                                                      Andykev
                                                                      Customer

                                                                        I forgot to mention. This will reverse your list order. You will have to adjust the menu to be in the order you want. Do this in the regular menu section of your dashboard.

                                                                        And you’re very welcome.

                                                                        in reply to: Align Nav Bar Right #16465
                                                                        Andykev
                                                                        Customer

                                                                          Yes. Change the float “left” to “right” as shown here:

                                                                          .genesis-nav-menu .menu-item {
                                                                          	float: right;
                                                                          	list-style-type: none;
                                                                          	margin: 0;
                                                                          	padding: 0;
                                                                          	text-align: left;
                                                                          }

                                                                          Around line 2091 of your main .CSS

                                                                          in reply to: main nav bar #16457
                                                                          Andykev
                                                                          Customer

                                                                            Tom, put this in place, it does not add any border, just rounds your corners on the existing menu.
                                                                            That is what you were looking for.

                                                                            .menu .current-menu-item a {  
                                                                            	background: #24FF24;
                                                                                color: #fff;
                                                                            	boder-radius: 25px,
                                                                            	-moz-border-radius: 25px;
                                                                            	-webkit-border-radius: 25px;
                                                                            }
                                                                            
                                                                            in reply to: main nav bar #16455
                                                                            Andykev
                                                                            Customer

                                                                              Tom, I tried this on your menu. It’s a double border with very rounded corners. Menu is regular color, but the drop down selections are green. It’s just an example to try to show what is possible. In fact, you may play around with it and pick something different from what you have now.

                                                                              .menu .current-menu-item a {  
                                                                              	border-radius: 25px; 
                                                                              -moz-border-radius: 25px; 
                                                                              -webkit-border-radius: 25px; 
                                                                              border: 5px double #800000;
                                                                              }

                                                                              Its around line 409 of your CSS. Enjoy!!

                                                                              in reply to: main nav bar #16454
                                                                              Andykev
                                                                              Customer

                                                                                Tom.

                                                                                Check hou this webpage which is a “rounded corner” generator. You can play with the settings to achieve the look you want, and it shows the proper code used in your .CSS to make it happen. Top link is rounded corners for any box..the botton is for designing menu’s.

                                                                                http://www.cssportal.com/css3-rounded-corner/

                                                                                http://www.cssportal.com/css-menu-generator/

                                                                                in reply to: Home Page ID #16421
                                                                                Andykev
                                                                                Customer

                                                                                  Mary, could you please let us know what plug-in you are using? Perhaps it’s a simple thing.

                                                                                  However, many plug-in’s with issues in any theme (here or elsewhere) might need to be addressed to the pluin author.

                                                                                  Rule #1
                                                                                  Please only post the issues that are caused by the theme you are using. If you are having issues with an external source that was not created by us (like a Plugin for example), then you will need to contact the Plugin author/developer or whoever created the code that is causing the issue.

                                                                                  in reply to: Changing Copyright Footer in Squareone #16414
                                                                                  Andykev
                                                                                  Customer

                                                                                    Add Geneis Simple Edits as a plugin. There is a line in that admin panel which allows you to insert whatever footer message you wish. It’s a must have. You’ll be glad you did.

                                                                                    If you prefer to simply change your theme .php file you can accomplish the same thing.

                                                                                    <?php
                                                                                    //* Do NOT include the opening php tag shown above. Copy the code shown below.

                                                                                    //* Customize the entire footer
                                                                                    remove_action( ‘genesis_footer’, ‘genesis_do_footer’ );
                                                                                    add_action( ‘genesis_footer’, ‘sp_custom_footer’ );
                                                                                    function sp_custom_footer() {
                                                                                    ?>
                                                                                    <p>© Copyright 2012 My Domain · All Rights Reserved · Powered by WordPress · Admin</p>
                                                                                    <?php
                                                                                    }

                                                                                    in reply to: Home Page ID #16410
                                                                                    Andykev
                                                                                    Customer

                                                                                      Ok. The “home” page does not show up in the Admin listing of your website pages. On my website, I do have a “home” page, but it is simply a blank page which I use to make the menu bar show a “HOME” link. The menu has a custom link to the website (URL).

                                                                                      You control the look of the “home page” with the widgets, and the Genesis theme does not have a “page-id” or “post-id” assigned to this template. It’s the page hierarchy.

                                                                                      If you wanted to use a static page, you create that (it will have a page-id) and use that for your home page. However you cannot use widgets on that page, but could use sidebars and place a widget in that area. The true “home page” does not have a page-id.

                                                                                      This may help show how specific pages in WordPress are identified:

                                                                                      https://codex.wordpress.org/Function_Reference/body_class

                                                                                      in reply to: Home Page ID #16403
                                                                                      Andykev
                                                                                      Customer

                                                                                        Do you mean the page.id?

                                                                                        <body class=”page page-id-1793 page-template-default ……..”

                                                                                        Or do you mean the page you created does not appear in your admin panel?

                                                                                        I think the front-page.php and home.php do not have page id’s., and do not show in the admin panel.
                                                                                        Removing your widgets from all the areas on the template will revert your page to the default which is recent posts.

                                                                                        in reply to: Footer Widgets not showing up #16390
                                                                                        Andykev
                                                                                        Customer

                                                                                          Hi Monica. Do you have a link to your site so we can see? Are you using any plugins? (the ones which allow you to select which pages a widget shows on?). Cleared your cache?

                                                                                          They should not show on your landings page. The Sub pages, do you have a default layout set or are they landing pages also?

                                                                                          in reply to: Primary Sidebar Showing on Home Page #16371
                                                                                          Andykev
                                                                                          Customer

                                                                                            If you are talking about this:

                                                                                            Sidebar Widget
                                                                                            Add copy here…
                                                                                            Simple Social Icons Plugin

                                                                                            It is because you have a widget placed in the HOME FEATURE # 3 #7 or #9 areas.
                                                                                            Remove the widget for Simple Social Icons from that area, and place it into the Primary Sidebar widget location. Then each page on the site will show the Icons if you select the page template with the sidebar. Full page template will not show. I think that is what happened.

                                                                                            in reply to: Mobil Menu not showing #16367
                                                                                            Andykev
                                                                                            Customer

                                                                                              Is ALL of your original CSS still there? Inspecting Element on your page looks like some of the @media part is missing.

                                                                                              If you have not changed (or eliminated) the original css the menu should trigger to the “hamburger” icon when you get to a certain screen resolution (767px) or below.

                                                                                              in reply to: Ally vs Epik #16352
                                                                                              Andykev
                                                                                              Customer

                                                                                                Hi! The demo’s are up to show the potential of each theme. Each is basically the same in your “admin” workload. These themes are set up with widget areas. Look at the layouts in the samples and you get the idea of what is “possible”. You do not have to use “ALL” the areas (widgets), just the ones you need.

                                                                                                I use Legacy and Epik. Each slightly different in their layout. I use almost all the areas in the Legacy, but not as many in the Epik. The nice thing about the Epik is the ability to expand as needed.

                                                                                                Remember, you can put photos, sliders, text..whatever..in each widget. The widget area is almost like a mini-webpage. I use the TinyMCE visual editor (maybe WP-Edit) whatever it’s called and that gives me a “control panel” in the widget just like on a full webpage.

                                                                                                And, depending on your needs, or what type of business, forum, or service you provide, that will determine which direction you might lean to.

                                                                                                Hopefully the showcase will be coming soon and you can see examples.

                                                                                                in reply to: Image on full width page not mobile responsive #16348
                                                                                                Andykev
                                                                                                Customer

                                                                                                  You are placing the image with the size fixed at 950px. You must change it to 100%. Once you do that it works when you size the page to Iphone size. It’s the settings of the image upload.

                                                                                                  <img class=”wp-image-14901 size-full” src=”http://www.carbidoff.com/wp-content/uploads/2011/06/Mechanic-joining-CarBidOff.jpg&#8221;
                                                                                                  alt=”Mechanic joining CarBidOff” height=”633″ width=”950″><p class=”wp-caption-text”>If you want to get more work give CarBidOff a go</p>

                                                                                                  Change to this”

                                                                                                  <img class=”wp-image-14901 size-full” src=”http://www.carbidoff.com/wp-content/uploads/2011/06/Mechanic-joining-CarBidOff.jpg&#8221;
                                                                                                  alt=”Mechanic joining CarBidOff” height=”633″ width=”100%”><p class=”wp-caption-text”>If you want to get more work give CarBidOff a go!</p>

                                                                                                  in reply to: Secondary Nav Floats Wrong Responsive #16344
                                                                                                  Andykev
                                                                                                  Customer

                                                                                                    Biagio,

                                                                                                    Perhaps a plug-in? I have used this and it is great. Works on Iphone too. This puts the social medial icon on the webpage and it “floats”. This is someting to try, and see if you like what it does.

                                                                                                    https://wordpress.org/plugins/floating-social-media-icon/

                                                                                                    in reply to: main nav bar #16341
                                                                                                    Andykev
                                                                                                    Customer

                                                                                                      Tom,
                                                                                                      Sounds great! Today I looked and saw the dark (almost burgundy) red menu bar with lighter red highlight menu items (hover).

                                                                                                      Yes that is where to look. If you use the “inspect element” you can “double click” the area on the right hand box of the inspection panel and actually change the settings, fonts, colors..to see what it looks like. Refreshing the page resets it back to what is actually on your live site. It’s an easy to quickly spot where a section of CSS code is for the item in question is.

                                                                                                      Cheers from SF Bay Area to Tokyo!

                                                                                                      in reply to: main nav bar #16330
                                                                                                      Andykev
                                                                                                      Customer

                                                                                                        Tom,

                                                                                                        I just checked your website on my Iphone and the menu items “highlight” to red when selected. I am not seeing any black lines between the box, just probably a 1px outline aroung the button.

                                                                                                        Your CSS is in the “style.css” on your theme. You go to the wordpress dashboard under appearance-editor and that takes you to the files of your theme. Careful! make a copy before changing anything.

                                                                                                        Also, open your browser (Chrome) and right click the page. At the bottom is “inspect element”. Powerful tool to look at where things are, and what code is affecting the part of your website in question. Firefox does the same (it’s easier for me).

                                                                                                      Viewing 50 posts - 151 through 200 (of 266 total)