Spence "The Evil Genius" Forman
Forum Replies Created
-
Forum: Plugins
In reply to: [AdRotate Banner Manager] Last update stupid – resized all groups to 125×125Big hugs Arnan! 🙂
Lol
Keep up the great work…Spence
Forum: Plugins
In reply to: [AdRotate Banner Manager] Last update stupid – resized all groups to 125×125agreed… adding those classes with “default” css that added arbitrary max width and height was not well thought-out ;-(
To fix it, we’ve added:
.g {
max-width:none!important;
min-width:none!important;
max-height:none!important;
min-height:none!important;
}Not really sure what the thought was here on our otherwise very beloved adrotate plugin…??
Hope this helps!
Forum: Themes and Templates
In reply to: changing the color or the menu and container boxYou can absolutely do this. Just add this css to your child theme style sheet, or you can use the custom css plugin to contain the same if you are using the parent theme (there is also the default custom css box in the theme options)
Nav menu to orange (you can use a hex value for any color instead of “orange”)
.nav a { color: orange !important; }Not sure if you want each individual container changed to a light rose, or the exact hex code, but here is how to do the whole page for all content:
#content { background: pink; }If you just want on woocommerce pages, it would be:
body.woocommerce #content { background: pink; }If you wanted just the featured product boxes:
#featured-products ul.featured-products li.flipper .front {background:red;}Forum: Themes and Templates
In reply to: [Clean Black] centered header imageUse this in your custom.css style sheet (hopefully in a child theme or else use the custom.css plugin to hold your css mods)
#header h2 {text-align:center;}Forum: Fixing WordPress
In reply to: removing URL Link from Header Logo on one page onlyYou need to create a conditional statement in the header.php file where the logo link is generated. You would write it something like:
if (is_page( 279 )) { ... logo code without the link; } else { .... logo code with the link; }Forum: Fixing WordPress
In reply to: Authorizing pluginsThat’s an issue on the FB side of things… check your credentials and configuration when creating a FB application via their interface.
Forum: Everything else WordPress
In reply to: Private databaseWhy do you need a full private database for ‘each’ user?
Forum: Fixing WordPress
In reply to: Changing directory structure after install – tricky issue to solveIf you’ve not manually generated your internal links (such as when writing a blog post, hand-crafting the links) then you should be ok… because WP dynamically creates the absolute URL’s from the domain you setup in the Settings/General menu of your admin dashboard.
In the event you are concerned, you can always do a find/replace on the database after you migrate it (or before even) to replace the /wp suffix and ensure that all links are “clean” to the root of the main domain.
There are plenty of tools for doing this kind of work, but either way you can always give it a try using ManageWP.com for example… where you have a backup of the current setup “just in case” you need to revert.
Forum: Installing WordPress
In reply to: error installationHate to ask the obvious, but are you using your OWN domain when you try this? Instead of “mydomain.com” as they probably gave you in the default instruction example 😉
Forum: Themes and Templates
In reply to: [Expound] Change fonts in header and header text locationThe css for the site title (fonts in header) is:
.site-title { font-size: 44px; line-height: 38px; font-family: Helvetica, Arial, Gill, sans-serif; }You can modify the font-family to whatever you wish, then save this css to your style.css or similar style sheet in the child.
To move this somewhere, you would go into your header.php and grab the markup that contains the h1 tag of “site-title” and then you can move it somewhere else in the header.php (you didn’t specify what you wanted to do with the move?)
Cheers!
spenceForum: Themes and Templates
In reply to: [Expound] Change fonts in header and header text locationYour site url please?
Forum: Themes and Templates
In reply to: [Sixteen] Remove the mesh from the header image in sixteen themeTo remove the mesh, add this to your style.css or custom.css file:
#header-image:after { background: none; }The black in top section is controlled by this: (adding green as an example color;
#top-section {background:green;}Cheers!
spenceForum: Themes and Templates
In reply to: [Ex Astris] Widget Icons In Widget Title – Remove?Hi one,
you can use this plugin to modify the admin menu to your heart’s content.
https://wordpress.org/plugins/admin-menu-editor/Since there are now dashicons contained within the WP code, you can also reference them directly instead of needing external icons. See: http://make.wordpress.org/core/2014/04/16/dashicons-in-wordpress-3-9/
So you can use any dashicon with any custom menu item… or replace any existing icon …or turn them off entirely.
Cheers!
spenceForum: Themes and Templates
In reply to: How do I remove the sidebar from blog page in Twenty Fourteen?Thanks Esmi!
John, since this thread is now at a “hold”, feel free to use the alternative solution we discussed. I’m here when you need help.
Cheers!
spenceForum: Themes and Templates
In reply to: How do I remove the sidebar from blog page in Twenty Fourteen?ok, so then when we get him “unstuck”, do we have your permission to continue talking here about the problems with his twenty fourteen theme where we left off?