j09
Forum Replies Created
-
Sorry to hear that.
Upon further inspection I notice that the background is being applied inline.
This means that whatever changes you use in CSS will always be overridden by the inline style.
This is what it looks like for reference:
<div class="um-row _um_row_1 " style="padding: 0px 0px 0px 0px;background-color: #ffffff;margin: 0px 0px 30px 0px;border-width: 0px 0px 0px 0px;border-style: solid;border-radius: 0px;">your best bet is to wait for someone who knows better about this plugin to reply.
Good luck
Alternatively, you just wait and see if someone with more experience about this plugin replies.
I am sure they would have a better fix.
And if you can’t find it, you can try a brute force approach and add this as custom CSS
.um-row, ._um_row_1 { background-color: rgba(0,0,0,0) }Thank you
Well, you have a
<div>that has the following CSS styling:class="um-row _um_row_1"So it could be either
.um-rowor
._um_row_1that is setting the background as
background-color: #ffffffI can’t really tell which one it is….check both
To make it transparent you need to change that to
background-color: rgba(0,0,0,0)The background does not seem to be there, so I can’t say for sure.
However, you may be interested in this
Forum: Fixing WordPress
In reply to: HTML Wait Time Very LongYou have:
+45 js files
+25 css files
+15 font filesThese take time to download / process / parse.
Consider reducing and combining as much as possible.
Forum: Fixing WordPress
In reply to: Home button still links to HTTP version instead of HTTPSForum: Fixing WordPress
In reply to: Home button still links to HTTP version instead of HTTPSYou actually don’t need to use any plugins if you don’t mind writing the redirect rules manually in the
.htaccessfile(Be Very Careful! and make backups before you do anything)
Forum: Fixing WordPress
In reply to: Home button still links to HTTP version instead of HTTPSThat depends on how you want to do it. You can do it through
.htaccessor through using a plugin, or in Cloudflare settingss (if that’s what you are using for SSL)Ideally, you just want to make sure that if someone visits
http://www.stijnspreekt.nlthey will automatically be redirected to yourhttps://domainThis is a plugin that seems to do the job. I can’t tell for sure as I don’t use it.
You need to read up on it a little bit.
- This reply was modified 9 years, 5 months ago by j09.
Forum: Fixing WordPress
In reply to: Home button still links to HTTP version instead of HTTPSYou need to update your menu.
This is the content of the “home” button
<a href="http://www.stijnspreekt.nl">Home</a>As you can see, it’s still pointing to your http domain instead of your new https domain.
Also, consider adding the appropriate redirects now that you have migrated from http to https.
Forum: Fixing WordPress
In reply to: Word-like tablesWhile I have not used any of them,
There are online tools that assist you in creating HTML tables without needing to manually code them in.
for example: Online Table Generator
(on a side-note: be sure to check what the final copy looks like on a phone. Tables are not mobile friendly)
Forum: Themes and Templates
In reply to: Need Help Editing Mobile Navbar Dropdown Button1- To Remove Text Shadow in Menu Items and remove spacing
@media (max-width: 992px) body .navbar-inverse .nav>li>a { padding: 0; /* text-shadow: 0 1px 2px #000; */ }2- To Make Nav Bar White
body .navbar-inverse .navbar-toggle { background: #fff; } body .navbar-inverse .navbar-toggle:hover, body .navbar-inverse .navbar-toggle:focus { background: #fff; }3- To Make Menu Icon Black
.fa { color: #000 }Forum: Fixing WordPress
In reply to: Visual Composer is the Worst Thing EVERYou might find this plugin useful, it disables all automatic formatting in the editor on a per-post or per-page basis (makes everything manual)
You can then use the
<br>tag for a line break whenever you need itForum: Fixing WordPress
In reply to: Missing Static Front Page selection in settingsOk, heads up, I am not very eloquent and some of the descriptions below might not be very clear – Also, a link to you website would be helpful.
If you click on different links and pages in your website and the URL address in your browser does not change, that’s an indication of the page being loaded in a frame
Very briefly, a frame is nothing but a “window” within a webpage that you can load other pages in while still being on the same page. There are good uses for frames, like google maps and other services like that.
Sometimes though; a frame is loaded in the page and set up to be 100% of the device width and height (The cause may be a simple mistake or something more dangerous)
This means if you don’t know it’s there, you won’t be able to tell.
IF the page is being loaded inside a frame, when you right-click you should see two options in the context menu, one of them is
view page sourceand the other isview frame sourceHowever, if the page is not loaded within a frame, you would only see
view page sourceThere is really no need for you to read about it until we establish for sure that the problem is framing.
So, now…
if you right-click.. do you see both
view page sourceandview frame sourcein the menu that shows up. (you don’t need to select anything just look at the options that come up when you right click) or do you just seeview page source?Forum: Themes and Templates
In reply to: [Gateway] Mobile Pages’ Header Not ShowingYou probably need to clear the cache on the phone you’re using. You can try visiting your blog on another phone to confirm.
When I load your blog I see the custom header across devices.
Please ignore the above message, after further checking, I see the problem too.