batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Keeping My Fixed Header Always on TopHow you know these things I’ll perhaps never know,
Google is my best friend.
Forum: Themes and Templates
In reply to: [Priimo] Leave a Reply/ Comment SectionGo into Pages > All Pages
Click the box next to the pages you want to edit
In the Bulk Actions drop-down select edit then click apply
On the next screen select Do Not Allow in the comments drop-down
click updateForum: Themes and Templates
In reply to: Expound: Hide Site Title and Tagline on Tablethttp://s29.postimg.org/6i6dnkxd3/Untitled.png
As you can see by the screenshot, the footer has a <div tag with a set width. It is causing havoc with the whole page @ mobile sizes.
I also noticed content going out to the right and the header background wont shrink properly because of it.
Forum: Themes and Templates
In reply to: Keeping My Fixed Header Always on TopIt seems to be a common problem due to the flash player. Adding ?wmode=transparent to the end of the URL link seems to be the fix.
<iframe width="560" height="315" id="bvideo" src="https://www.youtube.com/embed/YhbLciRcbe4?wmode=transparent" frameborder="0" allowfullscreen=""></iframe>Forum: Themes and Templates
In reply to: [Openstrap] Different styles for frontpage widgetsTypo’s in that.
You can just do the IDTo change the title for example:
#widget-front-page-text-2 h2 { font-size: 10px; }” I would like my website URL to print in the page footer location”
Thanks for pointing that out, I missed it.
@jfenton
If you want to make sure the website is printed no matter what add this to the print query. Change the content to what address you want..entry-content:after { content: "www.everlastinhappiness.com"; }The user has the choice if they do or don’t want to print the footer info. This method will print it at the bottom of the content area.
Forum: Themes and Templates
In reply to: [Fruitful] Custom CSS intermittenly not changing themeTry
h3.widget-title { border-bottom: 20px solid #669900; }Forum: Themes and Templates
In reply to: images go beyond content pane and cover sidebar in chateau themeAlthough I dont have a complete answer for you I did grab some shots of the problem. It might have something to do with the pinterest plugin as the first shot shows some pretty funky margins compared to the second.
Think we went thru this a couple weeks ago. The following code will remove the entire heading, the footer, the comment area, and the share buttons. It also sets padding and sizes so it will print on a single page.
@media print { body{ background-color:none; background-image:none; color:#000000; } #masthead, footer { display:none; } .site-content { width:100%; } .entry-content p { margin:10px 0 0 0; padding:0; line-height: 1.5; } .addthis_toolbox.addthis_default_style { display: none; } .site-content article { border-bottom: 0; } }Forum: Themes and Templates
In reply to: [Expound] Change Font Size?EDIT
The child folder should be in the themes folder not the expound folder.
What you just posted is the childs style.css file with the loop in it.
php loops don’t go in the style.css that might be your problem.
You should have loop.php with just the loop & style.css that starts with the following/* Theme Name: Expound Child Theme URI: http://ivykennedy.com/home2/expound-child/ Description: Expound Theme Author: Ivy Kennedy Author URI: http://ivykennedy.com/home2/ Template: expound Version: 1.0.0 Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready Text Domain: expound-child */ @import url(“../expound/style.css"); /* =Theme customization starts here -------------------------------------------------------------- */then add this to the style.css
.one_half a, .one_half_last a { font-size: 27px; }Forum: Fixing WordPress
In reply to: Installed themes removeAfter you click on theme details you should see a sreen like this.http://s30.postimg.org/s0x1hati9/Untitled.png
In the bottom right corner.Forum: Fixing WordPress
In reply to: Strange characters in comments on my blogLooks like a foreign language that isn’t translating properly, possibly of Germanic origin.
Forum: Themes and Templates
In reply to: HTML for black outline over white textThe link you gave is most likely an image that was created with the black text border.
You could try something like this with css. The size & font will determine how successful this will be.SELECTOR { color: white; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; }Forum: Themes and Templates
In reply to: [Expound] Change Font Size?To elaborate on your code @blondieblue227
That will only effect paragraphs p within the .one_half element, within the .entry-content element.
What you want to target are the links, so the correct code would be
.one_half a, .one_half_last a { font-size: 27px; }.one_halfwould effect the left side and.one_half_lastwould effect the right.I hope this helps clarify things.
EDIT
And 27px is probably too big, I would try 18 or 20.Forum: Themes and Templates
In reply to: [Expound] Change Font Size?@blondieblue227
First, you should not edit the expound syle.css, it will be erased if the theme is updated. Edits should be made in a child-theme or with a custom css plugin.Second, in the output html file you will see
<div; that means the css I posted will effect all of those.Paste it into a custom css plugin and see what happens.