Airster
Forum Replies Created
-
Well your wp-admin screen is accessible. Have you got your login details? If not you can click “Forgot Password” and then just enter your email address – they should then be mailed to you.
Or is there a different problem?
Forum: Fixing WordPress
In reply to: Navigation menu issue in ChromeI don’t see any problems in Chrome? Have you fixed it yourself? Also, that’s a nice theme. What is is?
Forum: Fixing WordPress
In reply to: Flowers on the post pageI don’t see this myself, and I’m fully up to date. Maybe it’s part of your theme?
Try changing the theme and see if it goes away.
- This reply was modified 7 years, 1 month ago by Airster.
Forum: Fixing WordPress
In reply to: Background colour issues with post headerGlad you got it fixed.
Forum: Fixing WordPress
In reply to: Some images now showing up when logged outHi. I’ve just had a look at this and it seems ok now. Did you manage to fix it yourself?
Forum: Fixing WordPress
In reply to: Background colour issues with post headerOk, I’m going to have to set this up on a dev site and have a play around. I can’t do that tonight though. Can it wait until the weekend?
If not, someone else might be able to help you in the meantime.
The fix should be dead simple but it does depend on how the theme has been coded and what has been restricted in the free version (they gotta make people pay somehow!)
Forum: Fixing WordPress
In reply to: CSS header menu & imageHi.
Regarding centring the menu, the template you are using expects a logo on the left side of the header, and also floats your menu (nav element) to the right. You need to tell the site not to display a logo at all. Currently it is reserving the space for a logo.
1) Remove the logo area:
.header-image-left {
display: none;
}2) Stop the nav element floating right and centre it with margins:
nav {
float: none !important;
margin: 0 auto !important;
}You will probably want to tidy this up a bit but it works.
Forum: Fixing WordPress
In reply to: Some images now showing up when logged outWhere are the images you can see but we can’t? Can you add a screenshot or something?
Forum: Fixing WordPress
In reply to: Background colour issues with post headerHi hamstermaths,
What theme are you using? It’ll be down to the single.php (or whatever template the posts use). However, I would expect the header to be the same across templates.
Forum: Developing with WordPress
In reply to: Different menu locations on different pagesHi Tabupl,
I’m not quite sure what you mean but I see the domain is different. From the page https://bqmanagement.pl/ the Oferta menu item links to https://www.temattabu.pl/#oferta.
Same for some of the other links, although the Blog and O NAS links use the https://bqmanagement.pl/ domain.
If you sort that out first, it might simplify your other problem.
Glad its sorted ??
Forum: Fixing WordPress
In reply to: add post to certain pageGo into Appearance > Menus.
In the left hand column of the main area you should see 4 tabs: Pages, Posts, Custom Links and Categories.
Simply expand the Posts tab, find the post you want to put and the menu, check it, and then click “Add to Menu”.
Then just move it to the place in the menu you need via drag and drop.
Hope this helps.
Mark
Do you have a URL so we can look at the code to see if it is even in there?
Forum: Fixing WordPress
In reply to: Footer text adjustmentHi Helen,
You need to remove (or override) the
text-transform: uppercase;
It starts on line 2297 of your style.css:
/*-----------------------------*/ /*--------FOOTER STUFF--------*/ /*---------------------------*/ #footerContainer { width: 100%; position: fixed; left: 0; bottom: 0; text-transform: uppercase; z-index: 0; }
- This reply was modified 7 years, 5 months ago by Airster.
Forum: Fixing WordPress
In reply to: How to center logo on mobile screen | Previous codes didn’t workGreat! Glad that works.
I’ve just had a look using Google Dev Tools iPad Pro emulation and it looks perfectly central to me.
Are you still having problems with the iPad Pro? I don’t have one so can’t test on the real thing I’m afraid.
Mark