zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding Space between an Ad and a WidgetUsually you can add a div class around your addsense, then just add some padding to the bottom of the div.
<div class"entry__content"> <?php the_content() ;?> </div> <div class="myadsense"> Adsense code here </div> <?php wp_link_pages(); ?>Then
.myadsense { padding-bottom: 25px; }You have two <div class=”entry__content”> in that screenshot, should it have two? Also, did you add the top: 400px; to the .acp_wrapper #acp_paging_menu? That probably won’t work out if you did and used that article as a height.
Forum: Themes and Templates
In reply to: [Customizr] Creating Space between Nav. Bar and Sliderthis should add some space between the slider and bar
.metaslider { padding-top: 20px; }This should remove the bar
.tc-header { border-bottom: none; }In case you want to change the background color of the header to match the body color after removing the bar you can use this instead of the above.
.tc-header { border-bottom: none; background: #fafafa; }Forum: Themes and Templates
In reply to: How to edit the css to change color of the menu barUsually you would create a child theme http://codex.wordpress.org/Child_Themes then add your CSS to that and use it instead of the main theme.
There are several plugins that can add custom CSS to your theme as well. Jetpack has a Custom CSS module that does it but if you don’t already use Jetpack it’s a big plugin to install just for that.
The easiest way without editing the main theme would be to use this plugin https://wordpress.org/plugins/simple-custom-css/and add this to it.
.main-navigation { background-color: #333; }Change it to whatever color you want.
Forum: Themes and Templates
In reply to: [Matheson] Remove page titleThis should do it
.page-title { display: none; padding: 0; }Forum: Themes and Templates
In reply to: [Albar] Resize Heading Font SizeCan’t find the theme Caira on wordpress.org themes, need a link to the theme or site and what heading?
Forum: Themes and Templates
In reply to: Page not showing in Child ThemeThe child theme will use templates if they are available, if not it will use the parent theme templates.
If you copy page.php to your child theme and make changes to it, it will use it.
Forum: Themes and Templates
In reply to: [Theme: Twenty Fifteen] Wider right column for the contentIt may need to be within @media conditionals
@media screen and (min-width: 59.6875em) { /* Right column */ .site-content { display: block; float: left; margin-left: 29.4118%; width: 80%; /* Original value: 70.5882% */ } }The layout is confusing I’m still trying to figure out exactly how to widen the content, make the sidebar narrow and move the sidebar to the right without breaking things.
Forum: Plugins
In reply to: [Mivhak Syntax Highlighter] bbPress issueGreat, thanks! And I rated it back in December. I’ll probably write a review on my site in the near future, I love how lightweight it is. Thanks again
Forum: Plugins
In reply to: [Mivhak Syntax Highlighter] bbPress issueThat worked, it’s displaying find in bbPress now.
The only issue I see which doesn’t bother me because I usually have it turned off is, on the forums the toolbar buttons are displayed along the side. instead of at the top. I played around in FireBug but couldn’t figure it out, it’s probably a bbPress style conflicting with it.
If you want to have a look I’ve left the toolbar turned on http://zeaks.org/forums/topic/author-and-date-just-under-the-title#post-12838
Thanks again for the quick reply and fix!
Forum: Plugins
In reply to: [Mivhak Syntax Highlighter] Code in comments issueGreat, thanks for the quick response and fix!
Forum: Themes and Templates
In reply to: Editing footer InformationCreate a child theme http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme <- Codex
http://zeaks.org/create-a-wordpress-child-theme <- my own guideActivate the child theme
Copy footer.php to the child theme folder, open it and edit the “2014 Broadband Technologies. Designed by Themes & Co” part, save and close.
99% change the code is in footer.php, some themes have an option to change the footer copywrite so check that out first.
Forum: Themes and Templates
In reply to: Menu transparent over top of imageIf you can move the navigation outside of the masterhead, then use background: transparent; on the menu, it may work. It doesn’t look like the image reaches the top of the page though.
Forum: Themes and Templates
In reply to: ThemeIt’s either a custom made theme or they don’t want anyone to know what theme it is.
Forum: Themes and Templates
In reply to: How to Edit my Home PageI have never used that theme but after a bit of searching I found this http://my.studiopress.com/setup/more-themes/archived-themes/serenity-theme/
I’m pretty sure that’s the theme you are using. The homepage looks like it uses widgets to display the information, so it could just be a text widget displaying it.
Forum: Themes and Templates
In reply to: Widen header width on 2012 template?Haven’t tried this but here’s a tutorial on how to do it http://wpbeaches.com/make-full-width-header-and-footer-in-wordpress-twenty-twelve-theme/