Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Tweaks, and any obvious errorsTry this:
#site-navigation, #site-navigation .sf-menu li { background: none repeat scroll 0 0 #060037; } #site-navigation .sf-menu li a:hover { background: none repeat scroll 0 0 #7f111b; }Looking good now 🙂 !
Forum: Themes and Templates
In reply to: Changing color of specific elements in Hemingway RewrittenThis worked for me:
.widget_search .search-submit { background: none repeat scroll 0 0 #COLOR; }Hope it works for you! 🙂
Forum: Themes and Templates
In reply to: Changing color of specific elements in Hemingway RewrittenHi there,
I just installed the theme and gave it a go, I see what you mean, its not playing ball! 🙂
My guess would be it’s something to do with the customizer.
Although, it should be avoided where possible I think in this case could use !important, like this:
.site-description { color: #COLORCODEHERE !important; }It worked for me using the Simple Custom CSS plugin.
Hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Iconic One] Add banner on headerI can’t think of a simpler solution I’m afraid, not if you want it in the header.
If you were willing to go with another location for it you could try this plugin: Google AdSense
🙂
Forum: Themes and Templates
In reply to: [Minamaze] Where can I find the 'the_content()' function?Is this what you are trying to achieve?
If so, try adding this to your custom css or child theme style.css:
body, #body-core { background: none repeat scroll 0 0 white 0.6; }Hope I’ve understood you correctly! 🙂
Forum: Themes and Templates
In reply to: [Minamaze] Where can I find the 'the_content()' function?Hi there!
I’m not really sure I understand what you want to do.
The actual function
the_content()is located in wp-includes/post-template.php – see its page at the WordPress Codex.If you want to add a div inside
<div id="content">– you’ll find that inside the header.php file.However, I’m not sure that will help you complete your task. If you post a link to your website I can suggest some CSS to make the main content background transparent for you.
🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Catch Everest] Phone number in headerHi there!
Can you post a link to your website and we’ll do our best to help you out 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Theme functions – cant log in, website is lostHi there!
Do you have ftp access?
If so, you can navigate to wp-content -> themes and delete the ‘Frau’ theme folder.
WordPress will switch to a default theme (2014) and you should be able to access the dashboard again.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Spacious] Colour of entire websiteHi there!
Is this what you are trying to achieve: Screenshot
If so you can use this code:
#masthead, #main, .footer-socket-wrapper { background-color: #f7efe3; }You have two options when using this code:
#1 Use a plugin like Simple Custom CSS and paste the code in there.
or
#2 Create a child theme and paste the code into your child theme’s style.css
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Hoffman] Featured imageHi there!
Is this what you are aiming for : Screenshot
If so you could try this code:
.featured-media img { margin: 0; width: 100%; }You have two options when using this code:
#1 Use a plugin like Simple Custom CSS and past the code in there.
or
#2 Create a child theme and paste the code in your child theme’s style.css file.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Changing color of specific elements in Hemingway RewrittenHi there!
Since you are already using a child theme you can use this code to chage the color of the site description in the header:
.site-description { color: #YOURCOLOR; }To change all of the elements using the green color, I would suggest going through your stylesheet and finding all instances of #1abc9c and copying that declaration to your child theme style.css and changing to your desired color.
I hope that helps a bit! 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Emphaino] Changing Main MenuHi there!
You can hide the Emphaino theme’s menu using CSS. I could make a suggestion for you but your site seems to be broken at the moment. Perhaps a problem with the ‘Insert Headers and Footers’ plugin?
I hope we can help you with this 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Iconic One] Add banner on headerHi there!
In order to do this you first need to create a child theme. You can find instructions here.
Next, copy the header.php file from the parent theme into the child theme folder.
When you have done that you can add in your adsense code in the header.php file around line 60 before the
<hgroup>tag.Make sure to give your adsense code a class and then you can change the layout using CSS. For example:
.myadsense-code { float: right; margin-right: 20px; }I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Radcliffe] How to add logo to left of site title?Hi there!
The first thing you need to do is to set up a child theme for your site. You can find instructions here.
Then, copy the header.php file from the parent theme into your child theme.
Under this line
<?php elseif ( get_bloginfo( 'description' ) || get_bloginfo( 'title' ) ) : ?>in the header.php file add in the code for your logo:For example:
<div class="mylogo"><img class="thelogo" src="http://www.photistoric.com/mylogo.png" alt=""></div>Then you can adjust the layout using CSS.
For example:
.mylogo { float: left; width: 150px; } .thelogo { width: 35%; }But this will depend on the size of your logo image.
I hope that helps a bit!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Unite] Header banner advertisingHi there!
The first thing you need to do is create a child theme.
After that you can copy the header.php file from the parent theme into your child theme.
Then you can place your banner code inbetween the logo and the social header, give it a CSS class and then adjust the layout to your requirements.
I hope that helps a bit!
Luke the Daft Duke