mythemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Verbo] Change font size of logo title and menuHi dear dazo1720,
original Title ( in line with menu not from header ) css properties
header hgroup h1,
header hgroup h1 > a,
header hgroup > a{
color: #454545;font-family: Montserrat, sans-serif, Arial, serif;
font-size: 30px;font-style: normal;
font-variant: normal;
font-weight: normal;line-height: 35px;
text-transform: uppercase;
}to change it you can use custom css options from our theme
go to Admin Dashboard > Appearance > Theme Options
here exists section “OTHERS SETTINGS”
with field “Add custom css”for eample add code:
body header hgroup h1,
body header hgroup h1 > a,
body header hgroup > a{
font-size: 26px;
}
You can add only the properties that you want to change ( for example above it is font-size )
About Menu:
This change is very tricky. Need multiple changes for multiple elements.
base change you need to do is on this code ( add it to custom css fields with your changes ):
body nav.header-nav ul li a{
font-family: Montserrat, sans-serif, Arial, serif;
font-size: 13px;
line-height: 14px;
}
body nav.base-nav ul.mythemes-menu ul li,
body nav.base-nav ul.mythemes-menu ul li a{
font-family: "Noto Sans",sans-serif;
display: block;
}
but there are elements which it is pointless to write because I do not know what changes you want to do.
Forum: Themes and Templates
In reply to: [Verbo] change article textyou can to do this by using custom css option
go to Admin Dashboard > Appearance > Theme Options
here exists section “OTHERS SETTINGS”
add follow code in field “Add custom css”
body.single.single-post article h1.post-title{
color: #000000;
}
Forum: Themes and Templates
In reply to: [Verbo] SITEWIDE HEADER REMOVALto drop header go to Admin Dashboard > Appearance > Theme Options
here exists Section “Header”
first option “Show header” uncheck it and do update.
So dear vheissucreative,
Aishwarya has a partial solution for your problem.
Also is need add the true condition for delimiter ( between menu and content )
header.php line 84
if( is_single() || ( ( is_home() || is_front_page() ) && !myThemes::get( ‘show-header’ ) ) ){
is need replace with
if( is_single() || ( is_front_page() && !myThemes::get( ‘show-header’ ) ) ){
Forum: Reviews
In reply to: [Verbo] Great theme, but defaults are cumbersomeSo dear lorielue,
In Appearance > Theme Options exists a logic option named “Show default content ( sidebars )”
To hide all default content is need to uncheck it.
To change default content from sidebars is need use widgets with your custom content.
for eaxample:
for Front Page Info boxes, is need to put the Text widget ( Title + Content ) to:
– Header – first front page Sidebar
– Header – second front page Sidebar
– Header – third front page Sidebarfor Footer Sidebars:
– Footer – First Sidebar ( use the widget myThem.es: website description )
– Footer – Second Sidebar ( use the sample Text widget )
– Footer – Third Sidebar ( use the sample Text widget )If you have any questions please ask, we will try to help you, it is desirable to enter the official website to use our forum or contact form.
Forum: Themes and Templates
In reply to: [Verbo] Remove the three column text under header imagelook here, we have an article about this: https://mythem.es/forums/topic/how-can-i-modify-the-3-components-on-frontpage/
I look to your web site and I cannot see backslash can you give me a screenshot ?
Forum: Themes and Templates
In reply to: [Verbo] Mobile version of Verbo needs fixingsome of this troubles are fixed but theme is not reviewed by wordpress team.
Forum: Themes and Templates
In reply to: [Verbo] Website totally wiped offmost easy way is to delete the theme and reinstall again ( you don’t lose content ).
Forum: Themes and Templates
In reply to: [Verbo] Footerun zip verbo.zip
and go to verbo/cfg/admin/default.php or edit direct with plugin WP Editor or you can get premium version from our web site. In premium version exists special settings for footer.
Forum: Themes and Templates
In reply to: [Verbo] Change default font sizeGo to Admin Dashboard > Appearance > Theme Options
find latest section “Others”and here you can see field “Add custom css”
add follow code to in this field:
body, html{
font-size: 14px;
}
Forum: Themes and Templates
In reply to: [Verbo] Page Specific SidebarOnly in premium version you can sett different sidebar for each page or post.
Forum: Themes and Templates
In reply to: [Verbo] Footerbe careful on new updates, all changes will be lost. Best solution will be a child theme or you can buy premium version for premium version exists special options for this.
premium version here: https://mythem.es/item/verbo-premium-wordpress-theme/
Forum: Themes and Templates
In reply to: [my lovely theme] How to change post text color?If you use Chrome browser ( not sure if is only for Chrome ) and you do copy / paste text from some web pages, for visual editor, text is copied with style ( black color ). Try use copy / paste in text editor.
I think that’s the problem!
Forum: Themes and Templates
In reply to: [my lovely theme] How can I get rid of search box?There exist sidebar !
You can change layout ( full width page ).Go to admin dashboard: and here in Appearance > Theme Options we have some options. Here find section Layout and third option from this section is “Front page layout” here select fullwidth layout and clikc on bottom button “Update Settings”.