lpq66
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Duplicate Social Sharing ButtonsPut this code in your css file, or if you using latest wordpress version. Go to Customize -> Additional CSS and paste this code there
.share-buttons { display: none; }It just hide it, so no one will see them, even you. But if you want to turn them off, look in your plugins or js code(if you’re skilled enough).
Forum: Developing with WordPress
In reply to: Alternate Header & Footerto link images try
<img href="<?php get_template_directory_uri(); ?>/your-image.jpg"/>Forum: Developing with WordPress
In reply to: Alternate Header & Footeryou link your stylesheet with functions.php or straight in header.php?
Forum: Developing with WordPress
In reply to: Alternate Header & FooterCan you share some code here, are you sure everything linked fine?
Forum: Fixing WordPress
In reply to: Help sizing textIn your css file add this code:
#top-menu { font-size: 16px //(put any amount you want). }For headings:
h2.widget-title { font-size: 1.5rem; }Forum: Developing with WordPress
In reply to: Alternate Header & FooterThere is different ways to do it.
But here is my way. First create a new page. After that you need to create a custom template.
You can read about that here: https://developer.ww.wp.xz.cn/themes/template-files-section/page-templates/
Simply create a new php file, name it page-landing.php.
Put this at the top of your file:
<?php /* Template Name: Landing Page */ ?>
And start coding your page.After you done, save your php file and go to page you created. Click edit and choose “Landing Page” from available templates. Click update and you done.
Forum: Themes and Templates
In reply to: need help removing white space above header image<div class="dt-logo">
just remove this
`Use google developer tools and inspect element with white space, then find it in your css file and change
Forum: Themes and Templates
In reply to: [Storefront] Storefront Menu item colorJust use google developer tools to search the problem next time.
Forum: Themes and Templates
In reply to: [Storefront] Storefront Menu item colorCan you provide a link to your website?