kobashicomputing
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove white space between menu and header image?Ran,
This is the least of your problems. Have you tried looking at your website on a tablet? On your cell phone? Your Welcome image, does not rescale to fit the screen.
Forum: Fixing WordPress
In reply to: Relocate logo and nav bar – please helpYou are not going to be able to change the position of the logo.
This is the way your theme is designed and coded. The logo is to appear on the left hand side and be responsive. It is part of the HTML template of the theme and is set to be positioned structurally inside the header as the left most column.
<header id="masthead" class="site-header" role="banner"> <div class="header-wrap"> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-8 col-xs-12"> Logo here </div> <div class="col-md-8 col-sm-4 col-xs-12"> Menu here </div> </div> </div> </header>
The background image isn’t helping out either. If you are using that, you are designing your website to be too dependent on it. The flaw is, that it will not look good at many different devices such as tablet and cell phone (have you tried looking at it on those devices?).
If you absolutely need to use it, then you need to rescale it down with Photoshop and place a lot of black space around it and center it, kind of like looking into a cylindrical peep hole idea – hope that makes sense.
Forum: Fixing WordPress
In reply to: Changing Logo Size – Resolution ThemeIts because your HTML code is specifying a fixed width and height (217×70).
<div id="logo-image" class="pull-left"> <a href="https://westillgotem.com"> <img src="https://westillgotem.com/wp-content/uploads/2016/08/cropped-Logo-real-3.png" width="217" height="70" alt=" Logo"> </a> <h1 class="site-title"><a href="https://westillgotem.com"></a></h1> </div>
In most of these themes, you need to use their interface to upload an image and assign it to the logo image. That puts it in the MySql database as a theme option.
There is code somewhere in your theme that is forcing the header to be this 217×70 pixel height. You need to find it in the PHP file for the theme and take those width and height settings out. Then, use the CSS width 100% code suggested above to expand the logo so that it will always fit the parent container it is in.
Forum: Fixing WordPress
In reply to: Jump (anchor) links not working correctly in some browsersTry using a different fragment identifier. “video” is a HTML tag name. Change it to “watch-video” instead.
Forum: Fixing WordPress
In reply to: How to built an online dictionary.Sure, why not.
Set up your WordPress to sign up users in a Author role and let them create posts. You set this up in Dashboard | Settings | General | Membership and New User Default Role.
There are a few WordPress Vote plugins you can put at the bottom of the post.
You are going to have enforce a “look and feel” policy of what actually goes into the dictionary term. It will require for you to manually eyeball each dictionary term submission to see if it meets your guidelines.
Forum: Fixing WordPress
In reply to: How Can My Website Have Users ? (Subscribers)Go to Dashboard | Settings | General and make sure the “Anyone can register” checkbox is checked on for the Membership field.
Then, for the New User Default Role, set it to Subscriber.
Forum: Fixing WordPress
In reply to: HTTP ERRORYour script uploading is timing out probably because the image is too big. You need to increase the execution timeout setting in PHP.INI. It is initially set to 30 seconds.
max_execution_time = 30
Change it to be a much higher number, like 90.
Forum: Fixing WordPress
In reply to: Domain change & server migration – NOT WORKINGA few things:
1) Did you change hosting vendors? And if so, did you go to your domain registrar and change to the new DNS server addresses?
2) Read this on how to move an existing WordPress site to another domain name:
Moving WordPress3) You may need to do a 301 Redirect on all the URLs in your older domain name to point to the URLs in your new domain. If you don’t, you may get hit with a Google duplicate content penalty.
Forum: Fixing WordPress
In reply to: Unable to change the wording under my featured imageExcellent. Your welcome.
Forum: Fixing WordPress
In reply to: How can I remove the black border on top of the archive page?Looking at your source, there is an ending body and html tag that shouldn’t be there. Your theme is generating bad html:
<div id="LeftBar"> <div id="Breadcrumbs"> <p> <font ;="" size="2"> <a href="https://garykrupacpa.com/index.html">Home</a> </font> </p> </div> </body></html> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <header class="page-header"> <h1 class="page-title">Month: July 2016</h1> </header>
Forum: Fixing WordPress
In reply to: Add a magnifying icon into my child-theme's header search barThe code is right there in the answer to that StackOverflow answer I gave you.
Here, I took the time to quickly come up with a solution for you and adapted to my liking. Go create a search.jpg magnifying glass jpeg of 20×20 pixels and copy and paste the html below and open up the browser.
<!doctype html> <html> <head> <style> #searchform #s { background: transparent url(search.jpg) no-repeat scroll right center; margin:0; max-width: 16em; } </style> </head> <body> <form action="" id="searchform" method="get" role="search"> <fieldset> <input type="text" id="s" name="s"> <input type="submit" value="Search" id="searchsubmit"> </fieldset> </form> </body> </html>
Forum: Everything else WordPress
In reply to: Google AdSende Revenue In WordPress made sites?Read the title again. He is talking about the revenue split between sites that use Adsense on WordPress sites and Google.
Duran1995:
The revenue split is 68% you, 32% Google for Adsense for Content.
When using Google search, it is 51% you, 49% Google.Forum: Fixing WordPress
In reply to: Add a magnifying icon into my child-theme's header search barI hope that’s better now and I urge you to consider your words in the future when replying back to a forum moderator.
Comments moderated. Consider this your second warning. There may not be a third.
A. N. Second Forum ModeratorSajtoslesco:
It involves placing a search icon as a background image into the input box. Thats all this is about. It has nothing to do with a button. You need to adapt the code to make it work.Forum: Fixing WordPress
In reply to: How To Remove Seprate name for blog in newspaper theme ?Go to Google search and enter in the search box:
site:androidfreedom.comYour home page search result is:
Android Freedom – Android Tricks,Tips,News And Hacks
androidfreedom.com ? BlogWhen you hover your mouse over the title, look at the status bar. That is the URL.
The second line is not the URL like in other website search results. It is a breadcrumb created from meta data using a schema.org structured data format. That is generated by the theme and used by Google search in the results.
Forum: Fixing WordPress
In reply to: Unable to change the wording under my featured imageThat looks like a post excerpt.
Go edit your post and up in the top right hand corner is Screen Option. Click on it and then click on the Excerpt check box.
Then, scroll down below the edit post box and you will see an Excerpt field. Just backspace over it to clear it.