batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Removing page titles – css or php?You can target the page id individually.
#post-109 .entry-title, #post-2 .entry-title, #post-332 .entry-title { display: none; }Forum: Themes and Templates
In reply to: [Destro] Wifi Sign?This will hide it from view:
.header_rss { display: none; }Add this to either a child-theme or use a custom css plugin.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Twenty Eleven white space below footerThis will make the footer background the same blue color as the page and reduce the margin of the widget area to the bottom of the footer.
The second one is optional but reduces the visual space between the content area and the bottom of the browser window.
#colophon { background: #143155; } #text-2 { margin: 0; }Forum: Themes and Templates
In reply to: [Virtue] Add website links in footerIf you copied my code there is set an id of custom-link, so you can target that in your css.
#custom-link { float: right; }or maybe
#custom-link { float: left; }Forum: Themes and Templates
In reply to: [Virtue] Add website links in footerPut your php file in the root of the child-theme folder, not a sub folder.
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve] adding a extra headerMake sure it’s in your child-theme or it will be erased with any theme updates.
This would make the image clickable and link to the homepage.<div id="custom-logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="LINK TO LOGO" /></a></div>You would place it just below the
<body <?php body_class(); ?>>in the header.php file.Depending on the width you would need to style with css and would go in the style.css file:
#custom-logo { margin: 0 auto; }Forum: Themes and Templates
In reply to: Is there such a theme?This site is a good example because its built with WP.
http://erikjohanssonphoto.com/work/imagecats/personal/Forum: Themes and Templates
In reply to: [Virtue] Add website links in footerLink to internal homepage:
<div id="custom-link">designed and edited by <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">CLICK TEXT HERE</a></div>
Link to external site:
<div id="custom-link">designed and edited by <a href="EXTERNAL LINK HERE" rel="home">CLICK TEXT HERE</a></div>Place just above closing </footer> tag.
Forum: Themes and Templates
In reply to: Two CSS related questions (Hover color and footer).main-navigation li ul li a:hover { background: #FFD700; }Forum: Themes and Templates
In reply to: [Icy] Full width home page,current width blog pageTry this:
body.home #main { max-width: 100%; } body.home #content { padding: 0; }Forum: Themes and Templates
In reply to: [isis] Center Navigation@mcagroup
Sorry I sidetracked your post.#menu_wrap { float: none; } #navmenu { text-align: center; padding-right: 90px; }Will need to adjust
padding-rightto fit your menu, only had demo to go off of.Forum: Themes and Templates
In reply to: [Theme : DesignFolio] Assistance activating custom logoHopefully you are using a child-theme since your editing php files, if not, create one now.
Then just code it into the header.php.<div id="custom-logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="LINK TO LOGO" /></a></div>Put it just above the
<div id="logo-wrap">tag.Forum: Themes and Templates
In reply to: [Stargazer] Delete the comments section from each pageForum: Themes and Templates
In reply to: [isis] Center Navigation@imon Hasan
I understand that you have a Pro version & would like to be paid for time you spent on this wonderful theme.
Perhaps saying it differently would be correct:We only support that feature in the pro version.
Forum: Themes and Templates
In reply to: Changing Page And Content Sidebar Colors?And sorry for the typo, that should be either 3 or 6 0’s in that.