Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Thanks guys…. but I’m not using the Mega Menu plugin which is free.

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    That worked perfectly – thank you very much!

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Hi Tom
    Same screenshot via Imgur.
    Imgur – Megamenu Screenshot

    Bit of a head-scratcher as I think I’ve completed both fields.
    Can you see what I’m doing wrong?

    Thanks in advance.

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Hi Tom
    These are the setting in the flyout menu.
    Mega Menu Flyout Settings

    I think everything is set to black.
    Can you see what I’m doing wrong?

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Thanks Michael.
    In the end, we cracked it with:

    .page-id-5983 .entry a {
                    color: #000000!important;
    }

    Thank you so much for your help – really appreciated.
    I’m off for a lie down

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Thanks Michael… but unfortunately none of that worked.

    I tried that script in the child CSS and it didn’t work, and then I tried to use a Custom CSS plugin
    (https://www.ads-software.com/plugins/simple-custom-css/)

    And that didn’t work either.

    I’m thinking that maybe something is up that I can’t override these rules.
    Any ideas where I would start looking?

    I’ve had a look in the “Pagination”

    /***** Pagination *****/
    
    .post .pagination { padding-bottom: 20px; padding-bottom: 1.25rem; }
    .page-numbers { padding: 5px 10px; padding: 0.3125rem 0.625rem; background: #eee; display: inline-block; }
    .page-numbers:hover, .current, a:hover .pagelink { background: #e64946; color: #fff; text-decoration: none; }
    .page-numbers a { display: block; }
    .pagelink { padding: 5px 10px; padding: 0.3125rem 0.625rem; background: #e64946; color: #fff; }
    a .pagelink { background: #eee; color: #444; }
    .post-nav a { font-size: 15px; font-size: 0.9375rem; font-weight: 700; }
    .post-nav a:hover { text-decoration: none; }

    I can’t help but feel I’m missing something obvious…

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Thanks Michael.
    Whist stylesheet do you think I should put this in?
    The parent theme or the child?
    And whereabouts?

    Cheers

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Hi Michael

    In all honesty, I’m a newbie at CSS – I know what I need to know, at teach myself as I go along.

    I have tried to recolour the links using the page id function

    page-id-5983 a {
    	color: black;
    }

    But it didn’t work. I tried inserting it into the main theme (MH Twenty Twelve) Stylesheet and in the child, but to no avail. I also tried changing “black” to “#000000”, and that also had no effect.

    The default link colours are purple, and then red on hover over – which is fine for the rest of site, but we just want to change the purple to black on these specific pages.

    Any ideas?

    Thread Starter spiralsofdanu

    (@spiralsofdanu)

    Hi Michael
    I’m learning as I go here, so not sure what the body_clss is…. however this is the code in the Header.php

    <!DOCTYPE html>
    <html class="no-js<?php mh_html_class(); ?>" <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo('charset'); ?>">
    <title><?php wp_title('|', true, 'right'); ?></title>
    <?php wp_head(); ?>
    </head>
    <body <?php body_class(); ?>>
    <?php if (is_active_sidebar('header')) { ?>
    <aside class="header-widget">
    	<?php dynamic_sidebar('header'); ?>
    </aside>
    <?php } ?>
    <div class="mh-container">
    <?php mh_before_header(); ?>
    <header class="header-wrap">
    	<?php if (has_nav_menu('header_nav')) { ?>
    	<nav class="header-nav clearfix">
    		<?php wp_nav_menu(array('theme_location' => 'header_nav', 'fallback_cb' => '')); ?>
    	</nav>
    	<?php } ?>
    	<?php mh_logo(); ?>
    	<nav class="main-nav clearfix">
    		<?php wp_nav_menu(array('theme_location' => 'main_nav')); ?>
    	</nav>
    	<?php if (has_nav_menu('info_nav')) { ?>
    	<nav class="info-nav clearfix">
    		<?php wp_nav_menu(array('theme_location' => 'info_nav', 'fallback_cb' => '')); ?>
    	</nav>
    	<?php } ?>
    </header>
    <?php mh_after_header(); ?>
Viewing 9 replies - 1 through 9 (of 9 total)