Brad Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: use child theme half way through customizing?I guess you could explain it as a back up of sorts. Your child theme piggybacks of the twenty ten theme styles and functions.
Yep, take all the files that you have changed and put them in your child theme, even function and page template files. Then restore twenty ten to its original state, make sure it is installed. Activate your child theme and all the changes you have made in your child theme will overwrite the twenty ten theme and use everything from the twenty ten theme that you didn’t overwrite.
Forum: Themes and Templates
In reply to: Changing the link colors in "Sight" themeThe element you are trying to style is:
.publisher-anchor-color a { color: #8F597F !important; }
Due to being set as !important if you add anything to your css file the !important will override it.
This might help you – Disqus CSS Customization/Troubleshooting – https://help.disqus.com/customer/portal/articles/466250-css-customization-troubleshooting
Forum: Themes and Templates
In reply to: [Twenty Ten] meta-entryYou can do it with css like
.csc_post_date, .csc_post_author, .csc_post_category { display: none; }
Forum: Themes and Templates
In reply to: How to align text with website linkYou could use a plugin that will create a nice neat table for you and you just fill the content in like it is an excel sheet, I think something like this plugin will help you – https://www.ads-software.com/extend/plugins/wp-table-reloaded/
Or you can see more table plugins here – https://www.ads-software.com/extend/plugins/search.php?q=table&sort=
Forum: Themes and Templates
In reply to: use child theme half way through customizing?Info on Child Themes – https://codex.www.ads-software.com/Child_Themes
It is never to late to create a child theme, if you are not sure what elements you have changed, copy the css from the file you altered into the child theme css file. If you have altered any other files, eg, header.php etc, copy the file into your child theme directory.
Changing css elements of a theme when you use a child theme is the same as changing the css elements from the original theme, you use the same .class and #id selectors but you just put your changes in your child theme css file with the new styles.
Forum: Themes and Templates
In reply to: [Twenty Eleven] How To Replace FaviconYou need to add it before the </head> attribute in the header.php file, eg:
<link rel="icon" type="image/png" href="https://example.com/myicon.png">
Create a child theme (https://codex.www.ads-software.com/Child_Themes) instead of changing the original theme code.
Or you could just use a plugin, see https://www.ads-software.com/extend/plugins/search.php?q=favicon
Forum: Themes and Templates
In reply to: Organizing Categories and PagesThis might help if your theme supports the Menu Editor: https://codex.www.ads-software.com/WordPress_Menu_User_Guide
Forum: Themes and Templates
In reply to: Multiple Menus How toCharlie, do you mean you just want to add other items to the standard menu bar? You can do this via the Menu Editor that can be found in Appearance > Menus
Forum: Themes and Templates
In reply to: [Max Magazine] Removing Sidebar@gazpo – im all good, AurumWebmaster was looking for help, but no reply for a while.
Forum: Themes and Templates
In reply to: How to change spacing of the menuBest to provide a link to the site, or the mention the theme and code you are using.
Forum: Themes and Templates
In reply to: How to change nav menu bar color in catch box themeDamn those other browsers, here is the full version to play with, you just need to alter the backgrounds to take into consideration the other and older browsers:
#1#branding #access, #colophon #access-footer { background: #3d3d3d; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#585858, #3d3d3d); background: -o-linear-gradient(#585858, #3d3d3d); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#585858), to(#3d3d3d)); /* older webkit syntax */ background: -webkit-linear-gradient(#585858, #3d3d3d); clear: both; display: block; float: left; margin: 0 auto 2px; width: 100%; }
For the hover elements you had, full version:
#branding ul.menu li:hover > a, #branding ul.menu a:focus, #colophon #access-footer ul.menu a:hover, #colophon #access-footer ul.menu a:focus { background: #e5e5e5; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#f9f9f9, #e5e5e5); background: -o-linear-gradient(#f9f9f9, #e5e5e5); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */ background: -webkit-linear-gradient(#f9f9f9, #e5e5e5); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e5e5e5'); /* for IE */ color: #373737; }
Forum: Themes and Templates
In reply to: How to change nav menu bar color in catch box theme#1 – change the background element:
#branding #access, #colophon #access-footer, #branding ul.menu ul a { background: linear-gradient(#255A8C, #1B4266) repeat scroll 0 0 transparent; }
#2 – change the background-color element:
#main { background-color: #EEEEEE; clear: both; padding: 2em 0 0; }
Forum: Themes and Templates
In reply to: [Max Magazine] Removing SidebarDo you have a link to your site, want to make sure I am referring to the right theme.
Forum: Themes and Templates
In reply to: Simple Catch theme – linking custom header logo?sorry, forgot about the max-height element…. my bad!!
Forum: Themes and Templates
In reply to: Simple Catch theme – linking custom header logo?Hi, your image that you are using as a place holder that your link wraps around is just way to small. If you change the css to the following, it will increase the size of your place holder image to about the same size as your logo and make it appear like it is the link.
h1#site-title a img {
float: left;
height: 204px;
padding-right: 0px;
width: 550px;
}