Space Wizard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Setting featured imageA link to your site and information on your theme would be helpful information to share.
You can also try deactivating all your plugins and checking if the problem persists. If it works, reactivate the plugins one at a time until you find which one causes the problem.
It looks like the change you made may have disrupted the layout of the page in a few places. In case you did not, always keep a copy of the code before you make changes so you can roll back if you make mistakes.
For problem #1 it looks like the side bar has a min-height of 1050px.
You can easily change this in the editor if you open the style.css file and search for the selector “div#homeSidebar” and change or remove the min-height.I am not entirely sure what your second issue is but I suspect the solution may also be reached through css.
Forum: Themes and Templates
In reply to: [Customizr] remove shaded box around header areaThe solution for this will probably require you to add some CSS to restyle your navigation if you want it to blend into the background.
If this is something you are comfortable doing, add the following ‘code’ to your theme’s style sheet in Appearance => Editor. If you are willing to do a little learning, creating a child theme would be the optimal way to add the CSS. Some themes have a theme option to add custom CSS without going into the editor so I would suggest checking if you can do that first.
.navbar .navbar-inner { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; background: none; }Forum: Fixing WordPress
In reply to: Another broken Visual EditorDoes this problem still persist if you change themes? If you haven’t tried, consider activating the Twenty Fourteen theme to see if your unsupported theme is causing the problem.
Another temporary solution might be reverting to an older version of the site, if you have maintained back-ups.
Hope I could help, and good luck in your investigation!
Forum: Fixing WordPress
In reply to: Change site URL broke blog and need help!Does http://www.DestinyKingPhotography.com point to the server where your site is installed? If it does, then maybe the problem is your database is filled with references to your other domain name.
If The second possibility is true, then try using a search-and-replace plugin to replace all mentioning of the wrong domain with one you wish to use.
Forum: Fixing WordPress
In reply to: Import post content to static home pageYou might consider creating custom fields in your posts where you can include URLs to video or other media. WordPress comes with a Screen Option that can be displayed for creating these custom fields, but there are also plugins with more advanced options that you can use.
https://ww.wp.xz.cn/plugins/advanced-custom-fields/ is a powerful tool for creating custom fields.
Hope this helps!