batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Liquorice] Change Liquorice Post BackgroundYou will need to use a css plugin or create a child-theme then add the following code.
#primary-content { background: #fff; }Forum: Themes and Templates
In reply to: [Theme:Bresponzive] Hundreds of thousands of 404 errorsMind posting a link to your site & maybe a section of error log to pastbin.com?
Forum: Themes and Templates
In reply to: WordPress on Godaddy1. The current version is 3.8 if you have 3.5 you should update. It can be done through the admin panel, Appearance > Themes.
2. If you plan on editing PHP files you need to create a child-theme. In the child-theme you can copy your footer.php and edit it through the admin panel, Appearance > Editor.
3. You will need to learn how to use GoDaddys admin panel or FTP to transfer the files to/from your computer.
Forum: Themes and Templates
In reply to: [Skirmish] Menu items not showing upIt does that because the amount of items in the grandchild menu.
There are a couple options here.
1. Restructure the menu so you have no more than 6-8 items.
2. Change some css styling so the list is vertically shorter.I see you use the Jetpack plugin, you can go into the Jetpack options and activate the custom css module then enter the following code.
This will change the spacing between the text and the blue background border as well as lengthen the links so they don’t wrap 2 lines.
.main-navigation ul ul a { padding: 4px 14px; width: 11em; }This code will remove the boxy borders that surround the drop down menus, if you so choose.
.main-navigation ul ul { box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; }Forum: Themes and Templates
In reply to: [Hueman] Page speedUnless your having problems I wouldn’t worry about this.
Those 2 files took a a total of 189 milliseconds to load, less than 2/10 of a second.
The whole page loaded in less than 1 second, I would consider that very good.Forum: Themes and Templates
In reply to: Sticky Navigation IssueIt looks like your links to the required JS files are incorrect.
When looking at the page source and clicking the links for jquery.scrollTo.min.js, waypoints.min.js and navbar2.js, it comes up with a 404 error page, meaning they cant be found.Forum: Themes and Templates
In reply to: [Landscape] Help a beginner change fonts?You will probably need to target individual elements in the page.
For example, this will change the font for the site title:.site-title a { font-family: cursive; }If you want the font to take over the whole site you can try:
body { font-family: cursive !importatnt; }Forum: Themes and Templates
In reply to: How to Center Entire Website in CSSYou may want to wait and see if any others chime in cause my solution is switch back zeenews default and start over.
EDIT:
For a quick fix change the width to 100% in your child css file./*============================ WRAPPER ============================*/
#header {
width: 0%;
margin: 0;
background: url(images/header_bg.png) repeat-x #bd0039;
}Forum: Themes and Templates
In reply to: [Theme: Twenty Eleven] Transparent Header BackgroundThis should cover your needs.
The last block changes the bottom part of the footer to match the color of the rest.#page { background: transparent; } #primary { background: #0f0f0f; } #main { background: #0f0f0f; } #colophon { background: #0f0f0f; } #access { margin-bottom: 0; } #site-generator { background: #0f0f0f; }Forum: Themes and Templates
In reply to: is it true that Graphene theme is obsolete?It was last updated in September, not that long ago.
It also has a very active support forum on the developers website.
If the person/people that said you NEED to change it are some kind of development or design firm, Just say “Thank you for not being honest with me, it has helped make the decision not to go with your company.”Forum: Themes and Templates
In reply to: [Tiny Forge] centering logo?#site-logo {
float: none;
}Forum: Themes and Templates
In reply to: how do you get the theme installed or activated?Just for the fun of it can you install a theme using the admin panel?
Using Appearance > Themes > Add New
Select any theme and let it go through the install process, activate it, log out, then try to visit your site.Forum: Themes and Templates
In reply to: [Customizr] Navbar drop down menu stack above slider?.carousel-inner { z-index: -1; }Forum: Themes and Templates
In reply to: [Theme: Twenty Ten] How to remove space above page titlesAdd this to your childs style.css
#content { padding-top: 0; }Forum: Themes and Templates
In reply to: how do you get the theme installed or activated?It sounds like you will need to in through FTP or your hosts admin panel (usually C-Panel).
Download the 2014 theme from here.
Unzip it to your desktop. You should end up with a folder named “twentyfourteen”.
Navigate to ??/wp-content/themes/ on your host.
You should see a twentyfourteen folder there, delete it.
Upload the twentyfourteen folder from your desktop to the host.
Go to YOURSITEADDRESS.COM/wp-admin/
You should see the login screen to get into the admin panel.