spiderv
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Corporate Lite] Logo placementLink not posted 🙁
http://www.westbenk.ruForum: Themes and Templates
In reply to: [Corporate Lite] Logo placementNo, in footer 🙂
<!-- start Simple Custom CSS and JS --> <style type="text/css"> @media screen and (min-width: 980px){ .header .logo h1{ display:none;} .header { background: url("http://www.westbanq.ru/wp-content/uploads/2016/05/logo-2916875-e1462368719462.png") no-repeat scroll 5% 50% rgba(0, 0, 0, 0); } }</style> <!-- end Simple Custom CSS and JS -->Forum: Themes and Templates
In reply to: [Corporate Lite] Logo placementhrrd
Background must be 102px height.
If you try to add
.header {background-size: contain;}, you will see logo.Forum: Themes and Templates
In reply to: [Corporate Lite] Logo placementCustom css must be in footer
.header .logo h1{ display:none;}
.header {
background: url(“https://assets.onestore.ms/cdnfiles/onestorerolling-1604-22001/shell/v3/images/logo/microsoft.png”) no-repeat scroll left top rgba(0, 0, 0, 0);
}Forum: Themes and Templates
In reply to: [Corporate Lite] Change font colour in site titleOr use Simple Custom CSS and JS module for it.
Or for logo – try create custom css in footer and paste it:
.header .logo h1{ display:none;} .header { background: url("https://assets.onestore.ms/cdnfiles/onestorerolling-1604-22001/shell/v3/images/logo/microsoft.png") no-repeat scroll left top rgba(0, 0, 0, 0); }Forum: Themes and Templates
In reply to: [Corporate Lite] Change font colour in site titleYou need a “child theme”
style.css for it –
/*
Theme Name: Corporate-lite Child
Description: Child Theme of corporate-lite
Author: Vlad
Template: corporate-lite
*/@import url(“../corporate-lite/style.css”);
.header .logo h1{ color:#abcdef;}
Or just change style.css in theme, but you will lost changes after theme update
Forum: Themes and Templates
In reply to: [Corporate Lite] Child themeAny
https://codex.wordpress.org/Child_Themesexample of child theme style.css
/*
Theme Name: Corporate-lite Child
Description: Child Theme of corporate-lite
Author: Vlad
Template: corporate-lite
*/@import url(“../corporate-lite/style.css”);
.header .logo h1{ color:#abcdef;}
Forum: Themes and Templates
In reply to: [Corporate Lite] Slider is too fast/var/www/html/wp-content/themes/corporate-lite/js/custom.js
For me, in bottom,
effect:’fade’,
animSpeed: 500,
pauseTime: 8000,
startSlide: 0,