Forum Replies Created
-
AuthorPosts
-
LorraineParticipant
You are very welcome - 🙂
September 1, 2015 at 12:46 pm in reply to: Remove post footer small footer border on archive page #164234LorraineParticipantHi Sebastian, if you find the selector for the archive pages you can use that to target the entry footer. You can use that to control any part of your theme. Hope it works...
.archive .entry-footer::before { border: none; }
LorraineParticipantHi, I can see that you have added the colour to the site header in the CSS which is correct but this code here is overriding it.
.featured-section .site-header { background-color: transparent; }
Quick fix would be either to remove that CSS if it doesn't cause issues elsewhere or you could be naughty and change the declaration of your colour to this...
.site-header { background-color: #6e6702!important;
Good Luck
LorraineParticipantHi, you need to adjust the minimum height of the header as you dont have anything else increasing it. Changing as below solves the issue.
.site-header { background-color: #fff; border-top: 3px solid #e44a3c; box-shadow: 0 3px rgba(70, 70, 70, 0.05); min-height: 180px; }
LorraineParticipantHi Victor - here it is. http://217.199.187.190/comtrol.co.uk/
LorraineParticipantHi, I have checked your CSS and I can't see the changes. If you PM me I can sort for you. I can see you have WP-Super Cache, could you clear the cache and I can see if I'm looking at an old page.
LorraineParticipantHi there - try this. You are left with padding issues after changing the background colour - so I have popped a little padding in too. The .styles is only in the head of the doc and won't work in the stylesheet.
Take a back-up of the file if you are unsure - find this and change to....
.sidebar-primary { float: right; width: 332px; }
to
.sidebar-primary { float: right; width: 332px; padding: 20px; background: #0a0e11; text-transform: uppercase; }
For the under-line try adding this....
#menu-new-menu ul li a { text-decoration: none; }
Let me know if it works.
LorraineParticipantYou should be able to use the normal custom menu widget which will then be assigned a class according to the widget. This is some code from a live site:
<section id="nav_menu-2" class="widget widget_nav_menu"><div class="widget-wrap"><nav class="nav-header" role="navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement"><ul id="menu-main-menu" class="menu genesis-nav-menu"><li id="menu-item-104" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-104">LINKS HERE...
I think with what's above you could possibly achieve what you are trying to do below as the menu is assigned it's own ID.
'container' => 'nav', 'container_class' => 'cbp-spmenu cbp-spmenu-horizontal cbp-spmenu-top', 'container_id' => 'cbp-spmenu-s3', 'menu_class' => 'xyz js-superfish sf-js-enabled sf-arrows genesis-nav-menu menu'
I sometimes work with graphic designers who give some corking navigation layouts and I haven't been beaten yet unless it ubermenu style. http://www.gmhcashregisters.co.uk/ This has some different styles here...
LorraineParticipantLooks fine, is this resolved
October 2, 2014 at 9:22 am in reply to: How to turn a submit button in contact form into a link to another page #126551LorraineParticipantGravity forms has a re-direct link under confirmations, I haven't tried it but it is worth some research.
October 2, 2014 at 9:17 am in reply to: responsive issues with product and cart page in woocommerce #126549LorraineParticipantApologies, I get really poor mobile reception and gave up yesterday, I'll try again when I have wifi rather than hard wired as I am in the day. I', UK so not too long.
September 29, 2014 at 11:48 pm in reply to: responsive issues with product and cart page in woocommerce #126222LorraineParticipantI don't use the custom CSS so I'm not sure how the media queries are handled. Try placing what's below at the bottom of the code.
@media only screen and (max-width: 480px) { .woocommerce.product-columns-3 ul.products li.product, .woocommerce-page.product-columns-3 ul.products li.product { width: 100%; } }
September 29, 2014 at 11:17 am in reply to: responsive issues with product and cart page in woocommerce #126176LorraineParticipantHiya, you just need to set this in the media queries at the bottom - if there is a setting for under 400px approx pop it in there. Just delete it from the main css and the default will come back. If you are not sure about the CSS take a copy of the style sheet before you tinker.
.woocommerce.product-columns-3 ul.products li.product, .woocommerce-page.product-columns-3 ul.products li.product { width: 100%; }
you'll find it near the bottom - place inside soemthing like this -
@media only screen and (max-width: 480px) {
LorraineParticipantYou are welcome Bas
September 29, 2014 at 2:17 am in reply to: responsive issues with product and cart page in woocommerce #126119LorraineParticipantHaving a look you have 2 columns displaying in the cart under 400px. It may be better to set a media query of 100% for the product for a single column or adjust the CSS so that the padding and font is slightly smaller to stop the overflow.
.woocommerce.product-columns-3 ul.products li.product, .woocommerce-page.product-columns-3 ul.products li.product { width: 100%; }
I have found on mobiles that rendering is different at times depending on how you refresh.
Just an observation, you have the cart buttons at different height when you have a line of text that goes over
. I tend to set a height to the text i.e..woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 { height: 50px; }
I'm not sure of this is the best fix but it it's what I would do...
September 28, 2014 at 3:57 am in reply to: responsive issues with product and cart page in woocommerce #126043LorraineParticipantI assume that you haven't altered any CSS that may be picked up in the cart.
LorraineParticipantIt's a rough work around but have you tried going to screen options in the top right of the screen --> Enable accessibility mode when you are in the widgets screen.
You could try switching off your plugins and seeing if one is causing it. I would take a full back up of your files and database too before updating in future just in-case it happened at an update you want to be able to recover and update again.
September 27, 2014 at 9:22 am in reply to: responsive issues with product and cart page in woocommerce #125946LorraineParticipantHave you installed Genesis Woo-Connect?
LorraineParticipantCould you use structural wraps to do it? I normally use it say if I want to have an area with a different background or to go full width.
LorraineParticipantYou should be looking at the template file the client created. This would be a copy of home.php.
This is what calls the loop, you could try adding manually. I haven't tested this and can't say for sure but that is where I would start playing...
add_action('genesis_loop', 'genesis_do_loop');
Or yesterday I created a template using
<div class="entry-content"> <?php the_content(); ?> </div>';
http://codex.wordpress.org/The_Loop This should answer a few questions, as will http://codex.wordpress.org/Page_Templates
-
AuthorPosts