wpnewbs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin login doesn't workYou’re welcome. Does it let you access the admin panel?
Forum: Fixing WordPress
In reply to: wp-admin login doesn't workThe log in can be found at https://getyourassignment.com/user.php
But I have no idea why it’s there and not on /wp-admin or /wp-login.php
Try this first:
body.page .entry-title { display: none; }
Your original code targets all elements with the class of “page”, and you want to target the body only.
If that doesn’t work out the:
body[class*="page-template-"] .entry-title { display: none; }
The body on pages receives a class “page-template-TEMPLATENAME” which is applied only to pages, so the code above will target only pages.
Forum: Fixing WordPress
In reply to: I hired for wordpress customization, is it safe?!Of course he can remove you, but does he have a reason to.
Is he a scammer who tries to get WP admin and FTP information by posing as a developer on Fiverr or is he a legitimate developer who only needs the access so he can do the customization project and be paid for it.
There are reviews on Fiverr, if he has good reviews he’s legitimate and there’s no reason to be scared.
You could of course send the theme to him, he’ll set it up on his local installation, handle the modification and send you the files.
But he’ll most likely ask for more money, since he’s no longer doing a customization on your installation, he’s setting up a new installation and then doing the customization. He’ll probably want about $30 more ( just a guess, no idea what the devs on Fiverr generally charge for their time ).
I’m pretty sure he’s talking about the search results on his website, not the search results on Google.
You’re welcome.
Forum: Themes and Templates
In reply to: sidebar pushed below contentCan you also show the code of header.php and sidebar-blogs.php?
Hi,
Here’s the CSS code you need:
.td-main-page-wrap { background: transparent; }
You can add that code with a plugin, for example this one https://www.ads-software.com/plugins/simple-custom-css/
Forum: Themes and Templates
In reply to: [Customizr] Menu always like thisHi,
Use this CSS code
.tc-regular-menu .navbar .btn-toggle-nav { display: block } .navbar .nav { display: none; }
Forum: Themes and Templates
In reply to: sidebar pushed below contentHi,
You need to clear the floats after the sidebar. So after </aside> add this:
<br class="clear">
Also, the section with the class “main” needs to have the class “two-col” as well.
Forum: Themes and Templates
In reply to: [Boardwalk] fixed the infinite scroll buttonPlease include a link to the website.
Forum: Themes and Templates
In reply to: [Tiny Framework] How do I make the Copyright Footer full width( nevermind )
Forum: Themes and Templates
In reply to: Hide Sidebar on a CategoryHi,
Did you add that in archive.php?
Forum: Themes and Templates
In reply to: how to change color of font in navigation bar.main-navigation a { font-weight: bold; }
Hi,
Top and bottom padding on .td-main-page-wrap
You can apply the bg color to that element as well and it’ll be fine. Or set padding-top and padding-bottom to 0