Sovit
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Clean Retina] Header adjustment too bigHi Butchoi,
To reduce the header space Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste the following CSS code:.hgroup-wrap { padding-bottom: 25px; padding-top: 5px; }
Now, Click on Save All Changes Button and Refresh your browser.
Forum: Themes and Templates
In reply to: [Clean Retina] UpdatesHi Ghloch,
Yes, there is a information about updates in the file named readme.txt inside the zip file that you downloaded and Yes, It is necessary to update the theme.
Thank you for using our theme.
Forum: Themes and Templates
In reply to: [Clean Retina] Custom Menu issue@alangrutter
Navigation will appear only on smaller devices and will be selected as default menu when non other menus are selected. And this will link to the home page so that user doesn’t get lost.Thanks for using our theme.
Forum: Themes and Templates
In reply to: [Clean Retina] Remove text and link slideshowHi to all,
To remove text and link from the slideshow follow the instruction below:
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS and paste the following CSS code:.featured-text { display: none; }
Now, Click on Save All Changes Button and Refresh your browser.
Thank you !
Forum: Themes and Templates
In reply to: [Clean Retina] Shortcodes are not workingHi vili_banilly and client153182,
It seems the theme you were using before provided the shortcodes. If you switch your theme the shortcode provided by your previous theme will not work on our theme because they were hardcoded in your previous theme. Whether you use our theme our any other theme from www.ads-software.com the shortcodes will not work. Hardcoding any shortcodes as your previous theme does is a bad practice which makes user locked-in to their theme. And whenever you try to change the theme the output breaks. But if the shortcodes you are trying to use is provided by plugin then check whether the plugin it is activated or not.
Thank you !
Forum: Themes and Templates
In reply to: [Attitude] Linked, instead of LinkedInHi Spiekerboks,
Thanks for pointing the issue. We will fix it in the next version update.
Thank you !
Forum: Themes and Templates
In reply to: [Attitude] Facebook icon is doubledHi slips,
We just checked your site and we found that there is two attribute name style in the img tag. There should be only one attribute inline CSS style for an element.
In your header section inside all the tag display unwanted code
<a href="https://www.blog.joshshoemake.com"> </a>
. So it may be the reason to be display a double facebook icon.Your code is:
<img src="https://www.blog.joshshoemake.com/wp-content/uploads/2013/05/notebook.jpg" style="float:right" style="PADDING-RIGHT: 305px">
It should be:
<img src="https://www.blog.joshshoemake.com/wp-content/uploads/2013/05/notebook.jpg" style="float:right; padding-right: 307px;">
edit it as above so that the img tag works properly.
Thank you !
Forum: Themes and Templates
In reply to: [Attitude] Nested Menu Overlap IssueHi Courtney,
It only supports upto third level. We will increase the number in our next version till then Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste the following CSS code to fix it:#access ul li ul, #access ul li:hover ul ul, #access ul ul li:hover ul ul, #access ul ul ul li:hover ul ul, #access ul ul ul ul li:hover ul ul { display:none; z-index: 9999; } #access ul li:hover ul, #access ul ul li:hover ul, #access ul ul ul li:hover ul, #access ul ul ul ul li:hover ul, #access ul ul ul ul ul li:hover ul { display:block; } #access ul li ul li { border-left: 0 none; border-right: 0 none; }
Now, Click on Save All Changes Button and Refresh your browser.
Thank you !
Hi Tishjtilley,
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste the following CSS code to remove the “featured text” on slider:.featured-text { display: none; }
Now, Click on Save All Changes Button and Refresh your browser.
Thank you !
Forum: Themes and Templates
In reply to: [Attitude] Header Lines—Hi JuAl78,
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste the following CSS code to remove the border in header as well as footer#access, #site-generator, #colophon .widget-wrap { border: 0 none; }
Now, Click on Save All Changes Button and Refresh your browser.
Thanks for using our theme Attitude.
Regards,
Sovit (Theme Horse Team)Forum: Themes and Templates
In reply to: [Clean Retina] How to insert a non standard fontWelcome any time ! Have a great website.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] How to insert a non standard fontHi epigrapisa,
Yes, you have to insert a script provided by ‘font integrate services’ in your website. For that follow the following steps.
Go to Appearance -> Theme Options -> Webmaster Tools -> Analytics
and paste your script in the header script box which is given by font integrate service such as Google Web Fonts https://www.google.com/webfonts.For Example:
STEP 1
If you want to put the Google font ‘Philosopher’ then Google Web Font give this script
<link href='https://fonts.googleapis.com/css?family=Philosopher' rel='stylesheet' type='text/css'>
paste this script that i have mentioned above.STEP 2
Now Integrate the font into your CSS
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste you CSS code for ‘Philosopher’ that Google Web Font give to u in YOUR-FONT-FAMILY field below.body, input, textarea { YOUR-FONT-FAMILY }
for example you are given this CSS code
font-family: 'Philosopher', sans-serif;
then your CSS code will bebody, input, textarea { font-family: 'Philosopher', sans-serif; }
Paste it and Click on Save all Changes Button.
Now, ‘Philosopher’ font-family is integrated to your website.Thank you for using our theme.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] Change Background Color Header & Footer@pattayanic:
You Welcome Sir and Thank you to u too for using our theme.@samanthaborn:
Thanks for using our theme.
Yes, there is a easy way to change a color for header and footer panel.
I have already figure out your problem in the first section of my reply above. Please go through it.
If you are having still confuse than create your own thread because this threads is already [RESOLVED].Regards
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] SloganHello AHPhoto,
Our Theme Clean Retina does not support image in the slogan section, it only supports text as slogan.
About changing the font in the menu.
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste the following CSS code to change thefont-family
as well asfont-size
in the menu:#access a { font: YOUR-FONT-SIZE YOUR-FONT-FAMILY; }
and one more thing if you also want to control the
font-family
andfont-size
of drop-down menus then also paste the following CSS code:#access ul li ul li a, #access ul li.current-menu-item ul li a, #access ul li ul li.current-menu-item a, #access ul li.current_page_ancestor ul li a, #access ul li.current-menu-ancestor ul li a, #access ul li.current_page_item ul li a { font: YOUR-FONT-SIZE YOUR-FONT-FAMILY; }
Note: Change YOUR-FONT-SIZE field for
font-size
in PX, YOUR-FONT-FAMILY field forfont-family
.For Example:
If you need to putfont-family
‘Arial’ with 14px for main top menu
and want to putfont-family
‘verdana’ with 13px for drop-down menu then your CSS code should be:#access a { font: 14px 'Arial'; } #access ul li ul li a, #access ul li.current-menu-item ul li a, #access ul li ul li.current-menu-item a, #access ul li.current_page_ancestor ul li a, #access ul li.current-menu-ancestor ul li a, #access ul li.current_page_item ul li a { font: 13px 'verdana'; }
Thank you for using our theme.
Regards
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] Change Background Color Header & FooterHi PattayaNic,
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and Paste the following CSS code to change header and footerbackground-image/color
,border-color
andbox-shadow
:For Header:
#branding { background: none #YOUR-BACKGROUND-COLOR; border-bottom-color: #YOUR-BORDER-COLOR; -moz-box-shadow: 0 7px 0 #YOUR-SHADOW-COLOR; -webkit-box-shadow: 0 7px 0 #YOUR-SHADOW-COLOR; box-shadow: 0 7px 0 #YOUR-SHADOW-COLOR; }
For Footer:
#colophon { background: none #YOUR-BACKGROUND-COLOR; border-top-color: #YOUR-BORDER-COLOR; -moz-box-shadow: 0 -7px 0 #YOUR-SHADOW-COLOR; -webkit-box-shadow: 0 -7px 0 #YOUR-SHADOW-COLOR; box-shadow: 0 -7px 0 #YOUR-SHADOW-COLOR; }
Note: Change YOUR-BACKGROUND-COLOR field for background, YOUR-BORDER-COLOR field for border and YOUR-SHADOW-COLOR field for shadow with your own HTML Hex color code. For HTML Hex color code refer to this link https://0to255.com/ and you can add similar colors for your background, border and shadow which makes your website more beautiful.
OR
If u just want to hide the entire header and footer
background-color/image
as well asborder-color
andbox-shadow
then paste the following CSS code:#branding, #colophon { background: none; border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }
Now, Click on Save All Changes Button and Refresh your browser.
Regards
Team Horse