batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Customizing Flounder Theme, CSS questionIf you mean the background color behind the word Contact.
.hentry.type-page .entry-header { background: #95a5a6; }Forum: Themes and Templates
In reply to: [Hostmarks] Child Theme for Hostmarks?Can you post the child themes css file please?
Forum: Themes and Templates
In reply to: Can an expert tell me what theme was used?Looks like a custom job based off the HTML5 Boilerplate.
Forum: Themes and Templates
In reply to: How to get rid of "date" on home page and every pageUse a custom css plugin and add the following code.
.date { display: none; }Forum: Themes and Templates
In reply to: Child theme not incorporating Child Style.cssYou need to add the parent theme declaration in your child theme.
@import url("../PARENTTHEME/style.css");More info here.
Forum: Themes and Templates
In reply to: [Purple Pro] Code showing when viewing actual pageIf you mean the code above the post comment button, that just tells people they can use those specific codes to format the comment they want to leave.
Forum: Themes and Templates
In reply to: [Attitude] How to remove all white space above headerIf your in the parent theme use a custom css plugin, if your in the child theme it can go in style.css through the editor. The reason we don’t edit the parent style.css is because all those changes will be gone if the theme is updated.
Forum: Themes and Templates
In reply to: [Catch Box] remove gray borders around contentThat would be the area that would enter your custom css declarations.
If you are completely new to CSS, I recommend going here and learning about how it is used.Forum: Themes and Templates
In reply to: Help with Godaddy and WordPressThis should probably be asked in the installation forum.
Forum: Themes and Templates
In reply to: [Clean Retina] How to install Contact Us plugin?In your admin panel go to Plugins > Add New.
Do a search for “Contact Form 7”, it should be the first result.
Click Install Now, then Activate Plugin after it’s done installing.
There will be a new menu item in the admin area called Contact.Forum: Themes and Templates
In reply to: [Twenty Fourteen] Adding Logo to Twenty fourteenInteresting, on my install the header stays in place like it should. You can see in the screenshot I was scrolled down the page.
Did you revert any PHP edits done earlier in this post?Forum: Themes and Templates
In reply to: [Twenty Fourteen] Adding Logo to Twenty fourteenWhere do I paste this code? in my child style.css or my child header.php?
Goes in the css file.
Forum: Themes and Templates
In reply to: Twenty Fourteen Primary Sidebar Appears at Bottom of PageSo I just checked with the latest browser versions of Chrome, Firefox, Opera and IE. All appears fine.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Replace Site Title with Image LogoI believe there is now a solution in this thread.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Adding Logo to Twenty fourteenI think I have a purely CSS fix for this now. It does require a site title. Site description is optional.
Image showing results..site-title { background-repeat: no-repeat; background-image: url(http://www.mouserunner.com/images/Yellow1_2.png); background-size: contain; line-height: 80px; /*Orininal height was 48px*/ font-size: 65px; /*Adjust font size so full image is clickable*/ } .site-title a { color: transparent; /*Title text invisible*/ } .site-title a:hover { color: transparent; /*Title text invisible on hover*/ } #primary-navigation { margin-top: 32px; /*New site tile height minus original to line up at the bottom of header*/ } .search-toggle { margin-top: 32px; /*New site tile height minus original to line up at the bottom of header*/ }