MageeWP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [onetone] Sub menuin the Onetone Options-> Styling-> Main Menu Colors,
Main Menu Background Color ( Sub Level ) option to change the sub menu color.Forum: Themes and Templates
In reply to: [onetone] Sub menuThe background color of the sticky header can be changed,
Go to Onetone Options, in the Onetone Options-> Styling-> Background Colors,
Sticky Header Background Color option to change the sticky header background color,
Sticky Header Background Opacity used to change the transparency.
Hope it helps you.Forum: Themes and Templates
In reply to: [onetone] Exclude Sticky Header Logo from mobile?Great ??
Forum: Themes and Templates
In reply to: [onetone] Onetone template – change element colorHi @justine13,
You can change this color from
Appearance > Onetone Options > Styling > Primary Color
. If you want to change this color only, you can add custom css( Appearance > Onetone Options > General Options > Custom CSS )
like thissite-nav.style3 > ul > li.current > a > span, .site-nav.style3 > ul > li > a:hover > span { border-bottom-color: #963 !important; }
change
#963
to your color.Hi socialhermit76,
Could you please send your website url to us so we can check it for you?
Forum: Themes and Templates
In reply to: [onetone] Centering Social Icons (Section 1)Hi looralikes,
Thank you for reporting this issue, please wait for the next update ( version 2.0.0 ).
Forum: Themes and Templates
In reply to: [onetone] Exclude Sticky Header Logo from mobile?Hi bigtom610,
Thank you for reporting this issue, it will be fixed in the next update.
Forum: Themes and Templates
In reply to: [onetone] Duplicate less.min.jsHi fomenkoandrey,
Thank you for reporting this issue, we’ll fix it asap.
Forum: Themes and Templates
In reply to: [onetone] page are jogging a bitHi,
Your site is not responding, could you give us some more details?Hi fomenkoandrey,
Could you please send your website url and wp-admin to us so we can check it for you?
Email: support[at]mageewp.com
Hi fomenkoandrey,
Could you please send your website url and wp-admin to us so we can check it for you?
Email: support[at]mageewp.com
Hi,
You can edit the theme file
functions.php
,change
'dismissable' => false,
to'dismissable' => true,
, then you can dismiss the nag message. We will make this change in the next upgrade.Forum: Themes and Templates
In reply to: [onetone] Centering Team ImageHi,
You can edit theme file
includes/admin-options.php
, change the following line'options' => array(2=>2,3=>3,4=>4),
to
'options' => array(1=>1,2=>2,3=>3,4=>4),
Then you can select 1 column.
Forum: Themes and Templates
In reply to: [onetone] Front Page font too big on mobileHi moreiraangela,
1, Please do not use so many
<br>
2, Please add the following custom css code.
@media only screen and (min-width: 320px) and (max-width: 480px) { section.homepage-slider h1, section.homepage-slider h2 { font-size: 14px !important;; line-height: 20px !important;; } } @media only screen and (min-width: 481px) and (max-width: 640px) { section.homepage-slider h1, section.homepage-slider h2 { font-size: 18px !important;; line-height: 30px !important;; } } @media only screen and (min-width: 641px) and (max-width: 768px) { section.homepage-slider h1, section.homepage-slider h2 { font-size: 20px !important;; line-height: 40px !important;; } } @media only screen and (min-width: 769px) and (max-width: 1200px) { section.homepage-slider h1, section.homepage-slider h2 { font-size: 24px !important;; line-height: 40px !important;; } }
You can edit the theme file
functions.php
, remove the following lineadd_action( 'tgmpa_register', 'onetone_theme_register_required_plugins' );