kremin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spun] Right-Align Search Bar in Header?Bump?
Success! If anyone wants to do this on their blog, I would install the “Use Google Libraries” plugin; then add this jQuery to your footer.php before </body>:
<script type="text/javascript"> jQuery('document').ready(function($){ $('[title]').removeAttr('title'); }); </script>
So awesome.
I spent a monster amount of time in my child theme’s version of content-home.php, hoping that would be the place to remove the floating text boxes, but to no avail. Has anyone had any success removing mouseover floating titles from Spun? I’ve never seen a page where anyone has removed them…
For others who are curious, that was indeed the block. It created some sort of redundancy. I removed the following chunk:
// Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'spun' ), max( $paged, $page ) );
…then saved the header.php file and uploaded it to my child theme and the duplication in tabs is gone!
Still can’t figure out how to eliminate hovering text when mousing-over the circles, however…
For the first part, is this a function of the header? I’m using a Child Theme and Custom CSS to make it confusing, but in the parent theme I believe I would have to alter this block of code:
<title><?php /* * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'spun' ), max( $paged, $page ) ); ?></title>
Forum: Themes and Templates
In reply to: [Spun] Subscribe in Header?This turned out to be an easy fix, all the functionality is controlled by JetPack. With JetPack and Subscriptions activated, I created a page, put that in the header menu, and the full content of the page is just:
[jetpack_subscription_form]
Forum: Themes and Templates
In reply to: [Spun] Circles = Color to B&W?All fixed, thank you!
Forum: Themes and Templates
In reply to: [Spun] Color display when hovering over imagesI do a Child Theme AND a CSS plugin for maximum confusion ; ) I entered this into the CSS Manager and it worked like a charm! Many thanks.
Forum: Themes and Templates
In reply to: [Spun] Changing header/bubble font to match footer?This worked like a charm, thank you so much. I’m tweaking the font size in both instances but otherwise this is totally perfect!
Forum: Themes and Templates
In reply to: [Spun] Changing header/bubble font to match footer?Alright! So far no luck; here is the code I inputted into the CSS Manager:
.site-title{font-family: "Quicksand", "Helvetica", "arial", "sans-serif"} .hentry.no-thumbnail span{font-family: "Quicksand", "Helvetica", "arial", "sans-serif"}
This DID change the header text, but it is different from the footer, and the text that appears when you mouseover the images has not changed – maybe I should’ve been more specific about the bubbles!
Forum: Themes and Templates
In reply to: [Spun] To make drop down menusCan you please share how you accomplished this? I DIDN’T figure it out!
Forum: Fixing WordPress
In reply to: Realign Weblog TitleThanks so much, that did the trick!
Forum: Fixing WordPress
In reply to: Sidebar helpI must be absolutely delirious to have missed that. Thank you soooo much, sincerely.