bodell
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Get rid of side margins/padding on one page[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
If I am understanding you correctly, all you need to do is set your:
<div class="container">to:
<div class="container-fluid">and your:
<div class="container-inner default_template_holder clearfix"> to just: <div class="default_template_holder clearfix">The .container class sets padding automatically where as container-fluid keeps it at 100%.
The .container-inner class was using a set width and therefore creating margins. since that’s all it was doing should be safe to just remove it from that div.Hope that helps/was what you were looking for.
- This reply was modified 9 years, 7 months ago by Jan Dembowski.
- This reply was modified 9 years, 7 months ago by Jan Dembowski. Reason: Fixed code block
Forum: Themes and Templates
In reply to: Please Identify This Theme?Looking at their source code this appears to be a custom theme.
Forum: Themes and Templates
In reply to: Error installing a theme from themeforestWhat do you mean by will not allow you? Are you getting an error message? Are you uploading in the right place?
Forum: Fixing WordPress
In reply to: The latest WordPress update messed up my websiteHave you been writing CSS style changes directly into the theme? If so these changes can be blown away in an update. All style changes should be made through a child theme of the theme you intend to use.
The syntax for your permalinks should be:
http://guitarist.com/blog/%year%/%monthnum%/%postname%/If it is already like this then I would check your redirects to see if you have any redirect loops created from switching your permalinks back and forth.
[moderated: Brenden: Please remove “advertising” links from your signature. Thanks.]
- This reply was modified 9 years, 7 months ago by Steven Stern (sterndata).
- This reply was modified 9 years, 7 months ago by Jan Dembowski.