martijn_1988
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change area in footer colorThat did the trick, stupid that i didn’t thought of that.
Text color isn’t changeable from theme options, as it are several widgets. Any thought on how the widget text color (from footer) can be changed?
Forum: Fixing WordPress
In reply to: Change area in footer colorWasn’t able yet to test that, will do later on tonight. One more question, i changed the color as mentioned above, however it hasn’t changed on my mobile phone / tablet. Any suggestions to change the css there?
Once again, thanks for all your help Blade.
Forum: Fixing WordPress
In reply to: Change area in footer colorSeems to work with the !important; code
Do you also have the code to change my text colors? Once again, i really appreciate your help!
Forum: Fixing WordPress
In reply to: Change area in footer colorThanks for your help! I will test it tonight when i’m home. I’ll keep you posted.
Forum: Fixing WordPress
In reply to: Remove a menu and remove space.
Forum: Fixing WordPress
In reply to: Remove a menu and remove spaceOnly issue left:
– Mainpage: I would like to remove the category menu – “shop by category menu” just above the banner.
Forum: Plugins
In reply to: [WooCommerce] Product not showing on shop pageI deleted my woocommerce.php now all products are back. Anyone has a clue what is wrong with the following code?
<?php /* Template Name: Woocommerce Page */ ?> <?php get_header(); ?> <!--Start Page Heading --> <div class="page-heading-container"> <div class="container_24"> <div class="grid_24"> <div class="page-heading-woocommerce"> <?php if (have_posts()) : the_post(); ?> <h1 class="page-title"><a href="#"><?php the_title(); ?></a></h1> </div> </div> <div class="clear"></div> </div> </div> <!--End Page Heading --> <!--Start Page Content --> <div class="page-content-container"> <div class="container_24"> <div class="grid_24"> <div class="page-content"> <div class="fullwidth"> <?php woocommerce_content(); ?> <?php endif; ?> </div> </div> </div> <div class="clear"></div> </div> </div> <!--End Page Content --> <?php get_footer(); ?>