spiralsofdanu
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Beetle] ChangingThanks guys…. but I’m not using the Mega Menu plugin which is free.
Forum: Plugins
In reply to: [Max Mega Menu] How to remove gradient on 2nd level itemsThat worked perfectly – thank you very much!
Forum: Plugins
In reply to: [Max Mega Menu] How to remove gradient on 2nd level itemsHi Tom
Same screenshot via Imgur.
Imgur – Megamenu ScreenshotBit of a head-scratcher as I think I’ve completed both fields.
Can you see what I’m doing wrong?Thanks in advance.
Forum: Plugins
In reply to: [Max Mega Menu] How to remove gradient on 2nd level itemsHi Tom
These are the setting in the flyout menu.
Mega Menu Flyout SettingsI think everything is set to black.
Can you see what I’m doing wrong?Forum: Themes and Templates
In reply to: Custom CSS to override only ONE part of a pageThanks 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 downForum: Themes and Templates
In reply to: Using a page-template (php) to change link colorsThanks 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…
Forum: Themes and Templates
In reply to: Using a page-template (php) to change link colorsThanks Michael.
Whist stylesheet do you think I should put this in?
The parent theme or the child?
And whereabouts?Cheers
Forum: Themes and Templates
In reply to: Using a page-template (php) to change link colorsHi 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?
Forum: Themes and Templates
In reply to: Using a page-template (php) to change link colorsHi 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(); ?>