LizardThemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Medicine] reduce the gap between left sidebar and contentSorry, but we don’t provide any services for editing themes for individual users.
Forum: Themes and Templates
In reply to: [Medicine] reduce the gap between left sidebar and contentTo fix this you have to inspect page elements and change the padding/margin for the element you need. Besides, you can change its width. For example, to change the position of sidebar in medicine you have to edit the following code:
.sidebar{ border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; padding-bottom:0 !important; width:252px !important; box-shadow:0 0 3px #c5c9c9; }
in the file style.css.
Forum: Themes and Templates
In reply to: [Medicine] Slider not same as demoHi!
To use the scrolling text you have to download the latest version of Medicine. It is available if you bought the theme.Forum: Themes and Templates
In reply to: [Frau] [NSFW] Problem displaying posts/categories!!!Hi!
To fix the problem we have to see your website.Forum: Themes and Templates
In reply to: [Medicine] footer not appearing on home pageObviously, the error occurred when moving site to your server.
Forum: Themes and Templates
In reply to: [Medicine] medicine theme not working in Internet explorerHi!
To fix this you have to add the property :
white-space:nowrap;
to the element you want to fix.Forum: Themes and Templates
In reply to: [Medicine] footer not appearing on home pageHi!
As I can see you have changed the theme and it is not working now. Perhaps you’ve damaged your theme files.Forum: Themes and Templates
In reply to: [Medicine] footer not appearing on home pageHi!
There is an error. It says that it cannot connect to database. Probably, you have made a mistake when moving your website to a server.Forum: Themes and Templates
In reply to: [Frau] Slider not showing on any page!!!To add slider use the following instruction:
1) Open your website front page, under Administrative account.
2) Click “Customize” at the top of your page to manage page elements.
After clicking it, you will see selection of elements, and three buttons at the top of each selection, which have the following functions:
– remove element
– edit element
– get support on lizardthemes.com.
4) To show again a removed element, use menu “Elements” in the top of your page. You will be able to change elements on your website in any time.
5) When all the necessary for your website elements remains on the page, save this configuration using button “Save Changes” in the top of your page, which is green in the customizing mode.
You can also find some tutorial here https://lizardthemes.com/documentation/Forum: Themes and Templates
In reply to: [Frau] Different behavior on IETo add slider use the following instruction:
1) Open your website front page, under Administrative account.
2) Click “Customize” at the top of your page to manage page elements.
After clicking it, you will see selection of elements, and three buttons at the top of each selection, which have the following functions:
– remove element
– edit element
– get support on lizardthemes.com.
4) To show again a removed element, use menu “Elements” in the top of your page. You will be able to change elements on your website in any time.
5) When all the necessary for your website elements remains on the page, save this configuration using button “Save Changes” in the top of your page, which is green in the customizing mode.
You can also find a useful tutorial here https://lizardthemes.com/documentation/Forum: Themes and Templates
In reply to: [Frau] Blurry Feature ImageHi!
Could you give us the URL of your website, please.
Forum: Themes and Templates
In reply to: [Frau] Page in catagory menuHi!
By default, there are two menus always visible on your screen, the “Main” menu and the “Top” menu. To customize any of them you have to go to the page Appearance => Menus and set the created menu as a main/top menu. Here are the intelligible instructions:
https://codex.www.ads-software.com/WordPress_Menu_User_Guide.Forum: Themes and Templates
In reply to: [Frau] Add time&year in the entriesHi!
Sorry for inconvenience. The line should look like:
<div class="post-date"><?php echo get_the_date('d'); ?><div class="post-day"><?php echo get_the_date('M'); echo (' '); echo get_the_date('Y');?>
Forum: Themes and Templates
In reply to: [Medicine] Creating the homepage "items"Hi!
There is the option “Show only records marked for Showroom” on page Appearance –> Medcine Settings –> Showroom in the dashboard. This option allows you to display only the items marked as “Show this record in the showroom” on add/edit page. Besides, you can simply turn off this option and specify the Showroom Source on the same page.Forum: Themes and Templates
In reply to: [Frau] Add time&year in the entriesTo add the year of posting you have to insert the code:
echo (' '); echo get_the_date('Y');
right after :
`<?php echo get_the_date(‘M’);’
on the 4th line of the file content.php as you have already guessed.