fechto
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Responsive] Remove post meta from Pages but not from PostsOK, I figured it out. removed the offending php code from full-page-width.php, as pages are full width but posts are not, and hence they use a different php file.
Forum: Themes and Templates
In reply to: [Responsive] Remove post meta from Pages but not from PostsSoo…is it all or nothing then? As in, I can remove for all or keep it for all, but not keep it for posts but remove it for pages?
Forum: Themes and Templates
In reply to: Tisson Theme- Child Theme With Functions.phpForum: Themes and Templates
In reply to: Tisson Theme- Child Theme With Functions.phpfair enough, I can do that. If someone does post it I would appreciate though.
Forum: Themes and Templates
In reply to: Tisson Theme- Child Theme With Functions.phpThanks. They don’t support customizations, and besides, you have to have an account to log in and post (the person I’m helping out probably does have an account; they have no idea what the login details would be). But I don’t really need that. What I do need is a method to get all the styles in there. There is line if the codex:
If your theme has more than one .css file (eg. ie.css, style.css, main.css) then you will have to make sure to maintain all of the Parent Theme dependencies.
And there are about 7 different css stylesheets in there. i see that the example code in functions.php only calls style.css (which isn’t even a file in that theme).
So what I’m looking for is some example code on how to load multiple css files (remember my coding handicap). If the files were say main.css, responsive.css and index.css how would you add those to functions.php?
May i ask for the complete code for functions.php? Including opening and closing tags?
And if my knowledge seems to advanced… i know html and css as well as anyone, but make rookie mistakes with pretty well anything programming wise that isn’t copy and paste.
Thanks!
Aaron
Forum: Themes and Templates
In reply to: [Responsive] Removing the hover style on menu linksHey Bojan,
Sorry – totally gapped on this. Thanks for the info!
Aaron
Forum: Themes and Templates
In reply to: [Responsive] Removing the hover style on menu linkssite is here: http://www.marketingtops.net/
I thought there was a style on the li, but couldn’t find it, so I just commented them out. That’ll be overwritten in the next update anyway I think.
Thanks a bunch and please let me know what you find1
Forum: Themes and Templates
In reply to: [Responsive] How to remove the three widgets from the bottom?.front-page #widgets { display: none;}
Forum: Themes and Templates
In reply to: [Responsive] How to remove the three widgets from the bottom?You need this in your style.css file:
.front-page #widgets {
Forum: Fixing WordPress
In reply to: Making a site liveactually that totally worked. I just had to assign the domain to the account.
Forum: Fixing WordPress
In reply to: Making a site livewell, I’ve managed to probably screw it up. Here’s what’s happened so far:
1. Changed the site url is general settings
2. set the nameservers on the host
3. changed the folder name in public_html to match the domain
4. ran the sql command on this page to swap out urls:http://coolestguidesontheplanet.com/updating-wordpress-mysql-database-after-moving-to-a-new-url/
and nothing….in ff and chrome the old site still shows. ie just gives an error.
Here is the site:
http://www.orilliasoccerclub.ca/well…time to bone up sql stuff I guess
Forum: Fixing WordPress
In reply to: Making a site livehmmm, that didn’t work. I just get the parked domain page for bluehost. I’ll check that link out.
Forum: Fixing WordPress
In reply to: Making a site livealrighty. Thank you for the reply and we’ll see what happens.
I have installed custom fonts – but not through a plugin. I created a directory and uploaded the font, then called it with the @font-face command in the css.
That said, it sounds like the issue is within the client environment…and if so there’s not much you can do about it imo.
Forum: Fixing WordPress
In reply to: Editing Background Color for tablesThis requires knowledge off css and firebug, though with them it’s fairly easy.
You’ll want a child theme (otherwise updates will overwrite your changes unless you save them somewhere and repaste after the update).
http://codex.wordpress.org/Child_Themes
Then add a command for;
.su-tabs-pane {
color: whatever you want it to be
}in a custom css file.
looking at this I can see how it would be a an issue if you are not familiar with css.firebug/ftp etc…but short of hiring someone to do it, this is the way.