alphaalec
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site Title Broken into Two Lines/Borders in SidebarCould you provide a link to the site? If we can see the problem it’s far easier to offer a solution 🙂
Forum: Fixing WordPress
In reply to: Image is blurry on product page, but not when i click on it!It’s because the image you’re seeing that’s blurry is only 405px wide, but it’s being stretched to 510px wide.
The lightbox image is 500px wide though, and is showing at 500px, so it isn’t having to stretch and blur.
Forum: Fixing WordPress
In reply to: Difficulty downloading wordpress and plug insOn another note, you don’t actually have to download the plugins if you’re getting them from somewhere on ww.wp.xz.cn. You can install them straight from your Dashboard.
To do that, instead of going to the ‘Upload’ plugin area, head to ‘Search’ instead. Run a search and install the plugin you want. Once you’ve installed your plugin, go to the ‘Installed Plugins’ page under the ‘Plugins’ menu item. All your installed plugins can be found here and you can activate/deactivate/delete them here.
Hope that helps!
Forum: Fixing WordPress
In reply to: Difficulty downloading wordpress and plug insIf you’ve downloaded the plugin, you can install them by going to your site’s dashboard, then go to ‘Add New’ under the Plugin menu item.
On this page there’s the main heading (‘Install Plugins’); below that there are some menu items; you want ‘Upload’
From there, click the ‘choose file’ button and select the zip file of the plugin you want to upload (fun tip: you can actually just drag and drop that zip file onto the field next to the ‘choose file’ button)
Forum: Fixing WordPress
In reply to: Aligning Quotation MarksAdd this:
display: inline-block; vertical-align: bottom;That, combined with margin-bottom: -10px; and margin-right: 10px; seems to line things up nicely.
Forum: Fixing WordPress
In reply to: Setting a 100% or Auto HeightCan you provide a link and say where on the site you want this? Knowing what element/area you have in mind that you want to affect will help with answering your issue.
Forum: Fixing WordPress
In reply to: how to edit wordpress website hosted by free web hostSo looks like when you go to http://www.npscsuccess.in/wordpress/wp-admin, it redirects to a localhost url: http://localhost/wordpress/wp-login.php?redirect_to=http%3A%2F%2Fwww.npscsuccess.in%2Fwordpress%2Fwp-admin%2F&reauth=1
I’m not sure why that’s happening, unfortunately.
Forum: Fixing WordPress
In reply to: How to modify position of header logo? CSS?You could always edit the rule so that it only affects the home page and not the others. For example
.home .header-logo { margin-top: 20px; }Forum: Fixing WordPress
In reply to: how to edit wordpress website hosted by free web hostCould you post your new domain’s url? A link could let us go there and try and see what’s wrong.
Forum: Fixing WordPress
In reply to: Product Category page turns completely White ?I’m not sure what the issue is, but there are some things we can try. Be prepared for a wall of text.
1.) Do you have any products listed with the Nato Straps category? I looked at what’s available in the url: http://watchbandit.com/product-category/ and don’t see anything with it. So that could possibly be why.
Of course, if there aren’t any posts, the appropriate response would not be to give a white screen, but a page that says “No results found”
2.) It’s possible you’re running into permalink issues. First I’d suggest going to your site’s dashboard and navigate to Settings -> Permalinks. I generally use the “Post Name” setting for my sites; you can try another setting or simple click “Save Changes”. Sometimes permalink regeneration is all you need.
3.) Is the nato-straps category currently assigned to be a child category of watch straps? Just something to check. If so you could try having it not as a sub category and see if that works.
Hopefully something in all that will help you!
Forum: Fixing WordPress
In reply to: Problems creating blog pageMy apologies; missed it as it wasn’t hyperlinked.
So yes, looking at the template tags, it is indeed set to be the blog page. It seems like it’s having an issue finding any posts; how many do you have published on the site?
It could perhaps be a permalink issue; you could try regenerating them by going to Settings -> Permalinks and just clicking the Save Changes button at the bottom.
Forum: Fixing WordPress
In reply to: Problems creating blog pageCan you provide a link to the site in question?
Forum: Fixing WordPress
In reply to: Problems creating blog pageIn your site dashboard, under the Settings menu item, go to Reading.
Select the “A static page (select below)” radio button, and assign what page you want to be your home page and what page you want to be your posts/blog page.
Forum: Fixing WordPress
In reply to: Sidebar Widgets Not showingWere these widgets in place before or after you activated the Beautiful Pro theme? As far as I’m aware, if a new theme has a different set of widget areas, you may need to reassign them, which would be why they’d be in the Inactive Widgets area.
Generally speaking you control your widgets from the page titled Widgets under the Appearance menu item in the dashboard. Some themes control widget-like areas on a page by page basic though, so you could look there.
Forum: Fixing WordPress
In reply to: Large gap under main navigationTo get rid of the surrounding borders of the drop down navigation, on .sf-menu ul remove the border-bottom, border-left and border-right
To get rid of the dotted borders between menu items in the drop down, on .sf-menu li li remove border-bottom: 1px dotted #ccc;
Enjoy!