Brad Davis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Stark Lite] Change text colour?Good to hear you got it sorted! The browser plugin Firebug for Firefox and Chrome is a handy tool to help with these sort of things.
Forum: Themes and Templates
In reply to: [Stark Lite] Change text colour?look in the style.css file for
body { color: #666666; ; }
Changing the color here should do what you need.
Forum: Themes and Templates
In reply to: How to delete Social Media Icons off of TemplateYou’re welcome! =)
Forum: Themes and Templates
In reply to: How to delete Social Media Icons off of TemplateHi,
It is a feature built in to the theme. You can remove it several ways.
1 – add the following to the style.css file (Appearence > Editor).addthis_toolbox { display: none; }
2 – Delete the chunk of code in 3 from the header.php file (Appearence > Editor)
3 – The more technical way, but also the way that is considered best practice would be to create a child theme with a new header.php file without the following chunk of code
<div style="position: absolute; width:190px; height: 100px; z-index: 2; right:0px;top:37px" id="sli"> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style addthis_32x32_style"> <a class="addthis_button_preferred_1"></a> <a class="addthis_button_preferred_2"></a> <a class="addthis_button_preferred_3"></a> <a class="addthis_button_preferred_4"></a> <a class="addthis_button_compact"></a> </div> <script type="text/javascript" src="https://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4da05c7851ede960"></script> <!-- AddThis Button END --></div> </div>
Forum: Themes and Templates
In reply to: [picolight] Home page blog posts appear as excerpts?Hey Ben, Sorry for the delay in getting back this post, end of year exams and assessment have sucked all my time up of late.
How did you go with your theme and changing to excerpts, looks like it is sorted from the looks of the website?
Forum: Themes and Templates
In reply to: [picolight] Home page blog posts appear as excerpts?Go to Settings > Reading and look for “For each article in a feed, show” and select “Summary”.
Hope that works for you.
Forum: Themes and Templates
In reply to: Copy wordpress template to another domainDownload the theme from your web host. You can find your theme in wp-content > themes
When you have it on your computer, ftp the theme folder to the same location on your new domain when WordPress is installed, eg, wp-content > themes > PUT HERE!
Or you can turn the folder to a zip and install it via Appearance > Themes after WordPress is installed on your new domain.
Forum: Themes and Templates
In reply to: Stop wrapping of header….(twentyeleven)Welcome! =)
Do you mean edit the home page file code? Do you have an index.php file?Forum: Themes and Templates
In reply to: Hide Tags in Post in TwentyTwelveWelcome! =)
Forum: Themes and Templates
In reply to: [Simple Catch] Change Site DescriptionSettings > General > Tagline is the place to edit the text.
Forum: Themes and Templates
In reply to: Hide Tags in Post in TwentyTwelvefooter.entry-meta { display: none; }
will hide the box that contains the tags.
Forum: Themes and Templates
In reply to: [Twenty Ten] meta-entryWelcome! =)
Forum: Themes and Templates
In reply to: Stop wrapping of header….(twentyeleven)Sometimes your browser refresh does not pull the updated version, it shows the browser cache. So have you got it working now?
Forum: Themes and Templates
In reply to: Stop wrapping of header….(twentyeleven)Currently you have padding on the right side of your menu that wraps it to the second line, change this in your css:
#branding .only-search + #access div { padding-right: 205px; }
to this:
#branding .only-search + #access div { padding-right: 0px; }
Forum: Themes and Templates
In reply to: [Simple Catch] No sidebar width of pages bigger?To be full width and left justified, change your css for div.col8 to:
div.col8 { width: 100%; }