Back to Front
Forum Replies Created
-
Forum: Plugins
In reply to: [Categories Images] Img src="empty" –Sorry! its just the images got uploaded to a sub directory of uploads – putting them back in uploads directory fixed it.
Works beautifully love this plugin
Forum: Plugins
In reply to: [Tweet This] Shortcode in Templatelol i mean inside the a tags
Forum: Plugins
In reply to: [Tweet This] Shortcode in TemplateHi John, thanks so much and sorry for the trouble!
After much bewilderment yesterday I finally figured out,
The embarressing issue was – Ad Block!Not being confident with my coding ability I just assumed something was wrong.
Using up to date Ad Block on Firefox with default (I’m pretty sure) add list – It was stripping everything inside the . I wonder if there’s anyway to mark up the divs so in case that happened the whole div got stripped and not left with a broken looking thing.
Thanks for the thorough investigation so sorry for the bother when everythings actually working as it should!
Forum: Plugins
In reply to: [Tweet This] Shortcode in TemplateOh, maybe this is actually a css issue?
here is a test page http://www.whatsbehindjnf.org/penguin/?success=1&post_id=321
Forum: Reviews
In reply to: [Rating-Widget: Star Review System] okHi, i had some spare time,
(hence adding star ratings)
and was rating a bunch of plugins so i remember them,
didn’t mean to be rude,was trying to
[forgot the star rating shortcode post id=<?php get_the_id(); ?>]
on a custom post type
and the stars were appearing but rating was appearing across all custom posts the sametried YASR to do the same thing and it worked.
sorry didn’t mean to disrespect just wasn’t what i needed.
Forum: Plugins
In reply to: [WP-Footnotes] line-height getting bumped up by footnotesBeautiful, simple, thanks Johnny.
BTW didn’t require the !important,
atleast not with my theme.any clues? where to start looking?
Forum: Themes and Templates
In reply to: [Spun] Spun Content width on pages.Hi, I’m new to .css editing but here was my solution to making posts wider. Simply increasingt the width of .hentry will work – but will increase width to the right. Then bumping it back to the left will center it. However this could make the posts unresponsive and illegible on small browser windows.
Anyway, the below code, using percentages rather than pixels for width worked, its not totally responsive or perfect, but it is legible on mobiles and widescreens alike..single .hentry, .error404 .hentry, .page .hentry, .search-no-results .no-results { /*margin: 0 0 1.5em; *//* removed - adding width overlapped navigation arrows */ padding: 20px 0px; /* changed from 70px 50px - want bit more compact anyway*/ width: 120%;/* changed from 700px want it to be 960 */ height: auto; position:relative; /*added*/ left: -10%; z-index: 10; /* tried move up from 10*/ }