Website only works on one browser
- The topic ‘Website only works on one browser’ is closed to new replies.
Need help? Check out our Support site, then
Dear Ellen,
I have finally managed to finish the website and have put it online and public for everyone to see.
Unfortunately I noticed while doing this that the website is only interactive and working on Internet Explorer.
Do you have any idea why this could be?
If you would like to check it for yourself please don’t hesitate to look at the website: http://www.sara-kaiser.com
Best,
Sara
The blog I need help with is: (visible only to logged in users)
Dear Ellen,
I have now figured out that the problem was because the sizing wasn’t right of my images. So I think I might be able to figure this one out by myself :)
Now I am wondering if it is possible to have site title only appear on the front page and not on the “About” or when going into one of the projects?
Best,
Sara
Hi Sara,
I’m so sorry for missing to reply to you earlier, please excuse me for this!
You could hide the site title for each page individually with custom CSS. For your About page this would be:
.page-id-3 #container #masthead #site-branding {
display: none !important;
}
You can check for each page ID using e.g. the Google Chrome browser inspector.
Best, Ellen
Dear Ellen,
Unfortunately the code you gave me didn’t work and I couldn’t figure out how to see it in Google Chrome, sorry…
I would like to remove the titles of ‘About’ and ‘Contact’.
Also I would like to align the Front Page Header Intro Text to the left.
Is that possible?
Best,
Sara
Hi Sara,
could you try, if the following works:
.page-template-default #container #masthead #site-branding {
display: none !important;
}
Best, Ellen