hellheim
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Autoplay video and poster imageHi there,
For custom coding or design implementations you should seek a wordpress developer. There are a lot of places on the internet where you can find one.
Thanks
Forum: Fixing WordPress
In reply to: Remove white space/padding under and above header logoHi Verena,
try this code in your css file:
.navbar-top {margin:-10px 0 0 !important;} .has-nav-menu .container > .navbar-header {padding-bottom:10px !important;}Hope this is what you are looking for.
Forum: Fixing WordPress
In reply to: nav-menus.php Syntax error, unexpected ‘<', expecting T_ENDIFAny other errors, besides mentioned one?
Forum: Fixing WordPress
In reply to: Admin bar disappearedHi there,
Did you try clearing cache?
Forum: Fixing WordPress
In reply to: Selecting Multiple CategoriesHi Dave,
Are you trying to assign a post to more than one category?
Forum: Localhost Installs
In reply to: Cannot add or customize theme in wordpress on localhostHi there,
How are you trying to add themes and plug-ins? Via Add new? Or copy paste into local directory?
Forum: Fixing WordPress
In reply to: Attributes or pre defined criteriaHi there,
Do you have admin capability when editing products?
Forum: Fixing WordPress
In reply to: Post won’t go into categoriesHi there,
Could you describe your process step by step?
Thanks
Forum: Fixing WordPress
In reply to: nav-menus.php Syntax error, unexpected ‘<', expecting T_ENDIFForum: Fixing WordPress
In reply to: Google Analytics Questions?Hi there,
You should ask these questions before deciding which way to go:
– Do I need the option to edit the code in the future?
– Do I have the needed skills to perform code operations?This should get you going.
Forum: Fixing WordPress
In reply to: Problem with 4.8It is not about hardware. Hope this is a server issue.
Forum: Fixing WordPress
In reply to: WordPress update, plugins, and theme. Keeping it fast and updatedDid you try switching to a default wordpress theme? Update to the latest wordpress version if possible.
Forum: Fixing WordPress
In reply to: WordPress update, plugins, and theme. Keeping it fast and updatedTry clearing cookies and cache, then reload desired page.
Forum: Fixing WordPress
In reply to: WordPress update, plugins, and theme. Keeping it fast and updatedTry disabling all plugins, then enable them one by one to find your conflict.
Forum: Fixing WordPress
In reply to: Code and style of headerTry this:
CSS
ul { list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #333; } li { float: right; } li a { display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } a:hover:not(.active) { background-color: #111; } .active { background-color:#4CAF50; } .number-wrap a.phone { color: red; font-size: 27px; text-decoration: none; } .number-wrap p.city { margin: 5px 0 4px 0; text-align: center; font-size: 14px; color: gray; text-transform: uppercase; line-height: 1.1; } .number-wrap p.number { text-align: center; margin: 0 0 5px 0; } .number-wrap { margin: 1% 1% 1% 1%; float: right; } @media screen and (max-width: 760px) { .number-wrap { margin:1px 5% 0 5%; width:90%; float:none; clear:both; position:relative; bottom:2px; } } #top_strip {float:left;width:100%;} #logo {float:left;width:88px;} #logo img {max-width:100%;height:auto;} #middle_part {float:left;} nav ul {float:left;width:100%;}HTML
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="description" content="Check out my page using a global header and footer." /> <title>St Louis Cooking blog</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.css"/> </head> <body> <header> <div id="top_strip"> <div id="logo"><a href="#" title="logo" alt=""><img src= "https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Google_%22G%22_Logo.svg/1000px-Google_%22G%22_Logo.svg.png" /></a></div><!-- #logo end --> <div id="middle_part"> <h2>This is the middle part of your top strip container.</h2> </div><!-- #middle part end --> <div class="number-wrap"> <div class="city">Call for a <br />Free Consultation:</div> <div class="number"><a href="#" class="phone">(651) 200-0000</a></div> </div><!-- .number-wrap end --> </div><!-- #top_strip end --> <nav> <ul> <li><a href="">Home</a></li> <li><a href="">Services</a></li> <li><a href="">Portfolio</a></li> <li><a href="">Contact</a></li> </ul> </nav> </header> </body> </html>Hope it gets you started.
You could also check https://www.w3schools.com/ and learn css, php, html.
Thanks