-
AuthorSearch Results
-
March 6, 2015 at 3:41 pm #22822
In reply to: Padding on Menu and Page Title Wrap
Theme Horse Support TeamKeymasterHi tking512,
To reduce the padding around the menu Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#access a { height: 30px; padding: 0; } #access ul li ul { top: 32px; } .search-toggle { margin-top: 1px; } #search-box { top: 30px; }
Thank you!
March 4, 2015 at 5:24 am #22715In reply to: Company Logo In Header
Theme Horse Support TeamKeymasterHi Lanai,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#site-logo { margin-top: 5px; }
Change this 5px to any px you want to adjust according to your design.
Thank you!February 23, 2015 at 12:13 pm #22406In reply to: Reduce height of top section
Theme Horse Support TeamKeymasterHi Chapline,
To entire top section of the page Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#main { padding-top: 30px; } #secondary { padding-bottom: 0; } .hgroup-wrap { padding-bottom: 0; padding-top: 0; } .hgroup-wrap img { margin-bottom: 0px; margin-top: 0px; }
Thank you!
February 10, 2015 at 5:48 am #21812Theme Horse Support TeamKeymasterHi Marie-Louise,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#site-logo { margin-top: 10px; }
Thank you!
February 6, 2015 at 10:54 am #21677In reply to: Full header logo
Theme Horse Support TeamKeymasterHi Simon,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#site-logo { margin-top: 0px; } .hgroup-wrap { padding-top: 0px; padding-bottom: 0px; }
This may help you
Thank you!
January 21, 2015 at 7:11 am #20859In reply to: Deleting white space above main pic on home page
Theme Horse Support TeamKeymasterHi Greg,
To reducing the white space above the main jpeg and the area just below the menu Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.home #main { padding-top: 0; } .home img.alignright { margin-bottom: 0; }
Thank you!
January 8, 2015 at 10:17 am #20219In reply to: Center logo on page in Header
Theme Horse Support TeamKeymasterHi vern.rowe,
Sorry for late reply.
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:#site-logo { float: none; margin-top: 0; padding: 20px 0 0; text-align: center; }
December 9, 2014 at 8:02 am #19217In reply to: Replace text on featured post slides
themehorse3ParticipantHi to move the whole block edit the class “featured-text”:
.featured-text {
position: absolute;
bottom: 55px;
right: 30px;
text-align: right;
color: #FFF;
}To move the title edit “featured-title”, to move content edit “featured-content”.
.featured-title {
font: 24px/30px “Philosopher”,sans-serif;
padding: 10px 20px;
background: none repeat scroll 0% 0% rgba(5, 169, 197, 0.9);
float: right;
max-width: 525px;
}featured-content {
padding: 20px;
background: none repeat scroll 0% 0% rgba(85, 85, 85, 0.9);
margin-top: 4px;
float: right;
clear: right;
max-width: 355px;
}December 8, 2014 at 6:39 pm #19184HarrietMemberOk, here is my code, it works good enough…
@media only screen and (max-width: 1078px) {
.featured-title,
.featured-content {
font-size: 80%;
display: block;
padding: 0px;
margin: 0px;
position: relative;
top: 45px;
bottom: 0px;
}
}
@media only screen and (max-width: 767px) {
.featured-title,
.featured-content {
display: none;
}
}November 26, 2014 at 9:31 am #18829In reply to: Header sizing
isabellaParticipantHi!
sorry, i’m not an expert, but probably i had the same problem,
so i resolved in this way:Theme Options – Design Options – Custom Css – Enter your custom CSS styles:
#site-logo {
margin-top: 10px;
}.hgroup-wrap {
padding-bottom: 0px;
padding-top: 0px;hope that runs ok also for you!
Isabella
}October 29, 2014 at 6:34 am #18023In reply to: Gap between tagline and header picture
Theme Horse Support TeamKeymasterhi Craig,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.hgroup-wrap img { margin-top:20px; }
Thank you!
October 21, 2014 at 10:58 pm #17786info23ParticipantI did thanks! here in style.css
}
.page-title-wrap {
background-color: #ffffff;
border-top: 0px solid rgba(0, 0, 0, 0.1);
border-bottom: 0px solid rgba(0, 0, 0, 0.1);
padding: 0px 0;
margin-top: 0px;
}Does this theme allow child themes? If I use the image slider is there a way to use my header banner on the other pages?
Thanks
Great ThemeOctober 13, 2014 at 2:41 pm #17463In reply to: Google Analytics – Tracking Code not working
dnodmiParticipantHi
I added the Tracker Snippet from Google Analytics under “Theme Options” / “Webmaster Tools” / “Analytics”
This is what shows up in the header before the closing head tag:
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-xxxxxxxx-x', 'auto'); ga('send', 'pageview'); </script><style type="text/css" media="print">#wpadminbar { display:none; }</style> <style type="text/css" media="screen"> html { margin-top: 32px !important; } * html body { margin-top: 32px !important; } @media screen and ( max-width: 782px ) { html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } } </style> </head>
In Google Analytics on the other hand, no pageviews are registered.
Do you guys know, how to troubleshoot it?
Many thanks
October 10, 2014 at 2:13 pm #17360In reply to: PromoBox Layout (interface free)
Theme Horse Support TeamKeymasterHi Bru,
To change the appearance style of the promo box as you said Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.widget_promotional_bar { text-align: center; } .widget_promotional_bar .call-to-action { float: none; margin-top: 16px; } .widget_promotional_bar .promotional-text { float: none; width: 100%; }
Thank you!
October 8, 2014 at 4:12 pm #17254In reply to: PromoBox Layout (interface free)
BruParticipantI guess the parameters are in there, but i’m not a developper.
/* Promotional Bar Widget */
.widget_promotional_bar {
background-color: #f1f1f1;
padding: 30px 30px 30px 26px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border-left: 4px solid #63c6ae;
}
.widget_promotional_bar .promotional-text {
font-size: 17px;
line-height: 24px;
font-weight: bold;
text-transform: uppercase;
color: #333;
width: 80%;
float: left;
}
.widget_promotional_bar .promotional-text span {
font-size: 13px;
line-height: 20px;
font-weight: normal;
text-transform: none;
display: block;
padding-top: 6px;
color: #777;
}
.widget_promotional_bar .call-to-action {
float: right;
padding-left: 25px;
padding-right: 25px;
margin-top: 6px;
} -
AuthorSearch Results