sepegden
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: Make Image Header Clickable to HOME in Minimaticaokay, for some reason that code messes with lightbox, not sure why, seems it redirects the image links to the homepage too.
So frustrating
Forum: Fixing WordPress
In reply to: Make Image Header Clickable to HOME in Minimaticafigured it out if anyone wants to know
replace the following text in header.php from
<header id="header" role="banner"> <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?> <<?php echo $heading_tag; ?> id="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></<?php echo $heading_tag; ?>> </header><!-- #header —>to
<header id="header" role="banner" onclick="location.href='http://www.yoursite.com';" style="cursor: pointer;" title=Home> <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?> <header id="header" role="banner"> <<?php echo $heading_tag; ?> id="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></<?php echo $heading_tag; ?>> </header><!-- #header -->[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code has now been permanently damaged by the forum’s parser.]
Forum: Plugins
In reply to: [Lightbox Gallery] how to remove image count display in photo galleriesPerfect Thank you!
I found it in Theme folder, minimatica/styles/colourbox.css and just added /before and after that pieces of code : #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
No more numbers 🙂
Viewing 3 replies - 1 through 3 (of 3 total)