Forum Replies Created
-
AuthorPosts
-
November 25, 2014 at 12:50 pm in reply to: Whitespace between featured post slider and homepage headline #48040
Sakin
Keymaster@Stanley: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
#masthead { padding-bottom: 0; } #homepage-message { margin-top: 0; }Sakin
Keymaster@Gerald:
1. In homepage headline, you can split the content to next line by adding in the HTML code<br />2. That bouncy effect is not there in this theme. Sorry for that.
3. I don’t see header top sidebar in your site. But to make that background transparent. You can add the following css:
.header-sidebar { background: none transparentSakin
Keymaster@Whitney: You can wrap it with the div with max width logic. For example: the following code will load your video with maximum 600px width.
<div style="max-width: 600px">https://www.youtube.com/watch?v=46lb7hn4ukM</div>November 25, 2014 at 11:01 am in reply to: Change site title font to external font style possible? #48037Sakin
Keymaster@Joaozinho: Sorry WordPress Theme is not social networking. So, to add that features you need to add in Plugin. Search for plugin at http://wordpress.org/plugins
Sakin
Keymaster@fmck718: For that page only, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
.page-id-554 #content img { box-shadow: none; }Sakin
Keymaster@Gerald: I see that there is extra css which is adding the border. Can you check if you could find the following css. If you find that then please delete that.
#masthead { border-bottom: 1px solid #6a6; }Otherwise, you need to replace
#masthead { border: none; }with the following css:
.site #masthead { border: none; }Sakin
Keymaster@Kim: Ok we will add in font size option for page/post title in next version update. For now, you can do it manually. In the following css, you can change the font size as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.
@media screen and (min-width: 961px) { .entry-title { font-size: 26px; } }Sakin
Keymaster@Keir: Thanks for posting the CSS issue. We will fix that in next version update. For now, you can add the following css in “Appearance => Theme Options => Custom CSS”
.widget-area .widget .widget-title a { color: #ddd; }Sakin
Keymaster@Scott: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box. You can further reduce the margin bottom as per your need.
.home .site-content .hentry { margin-bottom: 20px; }Note: I see that you have empty
<p></p>tag in your homepage post. That is also taking spaces. So, go to text mode in your editor and remove that.Sakin
Keymaster@Michaela: Try just reducing the image quality little but like make the quality 60 or 70. So, the image size will be about 400kb and so on.
If you have large images then you can use the cache plugin to lead the images from cache. Check out W3 Total Cache plugin.
Sakin
Keymaster@horriblehomemaker:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box.#branding ul.menu li:hover > a, #branding ul.menu a:focus { background: none transparent; font-weight: bold; text-decoration: underline; }2. Which font are you trying to change to. If that is web fonts then you can just add the following css in “Appearance => Theme Options => Custom CSS” box.
#branding ul.menu { font-family: "Helvetica Neue", Helvetica, Arial; }3. Yes, just add the following css in “Appearance => Theme Options => Custom CSS” box.
#main { background-color: #fff; }Sakin
Keymaster@Gerald:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box#homepage-message .left-section { text-align: center; width: 100%; }2. You can add the following css in “Appearance => Theme Options => Custom CSS” box
#featured-post .entry-title { text-align: center; }3. This is bit complicated. But I will try. Add the following css in “Appearance => Theme Options => Custom CSS” box
.home .site { background: none transparent; } .home #masthead { background-color: #fff; margin-bottom: 20px; } #main-slider, #homepage-message, #main #featured-post { margin-bottom: 20px; }4. This has already been solved by answer 3
5. You can add the following css in “Appearance => Theme Options => Custom CSS” box
.no-sidebar-full-width #main { padding-left: 0; padding-right: 0; }6. You can add the following css in “Appearance => Theme Options => Custom CSS” box
.page .entry-header { display: none; }Sakin
Keymaster@Gerald: To remove the line between the secondary menu and the slider, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#masthead { border: none; }Sakin
Keymaster@Tillman: You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove the archive page header text:
.archive .page-header { display: none; }Sakin
Keymaster@ysener: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the post format display:
.entry-header .entry-format { display: none; }Sakin
Keymaster@herrb: Sorry I don’t get it what you mean. When I check in your menu, it’s working fine.
Sakin
Keymaster@stella: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
@media screen and (max-width: 960px) { #access-top .tinynav, #access .tinynav { display: none; } #header-menu ul.menu, #fixed-header-top ul.menu { display: block; } }Sakin
Keymaster@Michaela: I check in your images in the slider. Our theme has nothing to so with your image blurred. As the image file you have uploaded is quite blurred.
See this:
travelintense.com/wordpress/wp-content/uploads/2014/11/dominica_middlehamfalls-1279×550.jpgNovember 24, 2014 at 9:35 am in reply to: How to move header logo on top of the sidebar on categories and posts #47980Sakin
Keymaster@aleks.mavric123: Then you can replace the css
#site-logo { display: none; }
With the following css:
.logo-wrap { display: none; } -
AuthorPosts
