dinkybluebug
Forum Replies Created
-
Will do – and thanks!
Ive sorted it.
unticked Open PayPal Checkout Page in a New Tab
Forum: Themes and Templates
In reply to: [Cubic] add another sidebard to single post pagethanks Kathryn, I think you’re right.
So speaking of child themes then, its mostly the functions.php that I change
If the original theme had a functions.php file that contained content A, B, C
and I wanted to add in D and E – currently at the moment, I add this onto the end of the functions file so it has A,B,C,D,E
using child themes, would I create a functions file with A,B,C,D,E in , or leagve the parent with A,B,C and then have a child theme functions file with just D, E in?
am I making sense?
Forum: Themes and Templates
In reply to: [Cubic] static header, scoll bar underneathHi, Yes- I added this into the stylesheet to fix the header :
body.home header#masthead.site-header, body.archive.category header#masthead.site-header { position: fixed;then added changes to margin top into the responsive code in the cubic stylesheet. See below code that changes depending on width of screen
body.archive.category div#content.site-content, body.home div#content.site-content { margin-top: 0px; }/*-------------------------------------------------------------- 7.0 Responsive --------------------------------------------------------------*/ body.archive.category div#content.site-content, body.home div#content.site-content { margin-top: 73px; } /*-------------------------------------------------------------- 7.1 x <= 568px --------------------------------------------------------------*/ @media screen and (min-width: 568px) { /* Content */ body.archive.category div#content.site-content, body.home div#content.site-content { margin-top: 97px; } .archive .hentry, .blog .hentry, .search-results .hentry { float: left; padding-bottom: 50%; width: 50%; } .archive .hentry:nth-of-type(2n+3), .blog .hentry:nth-of-type(2n+3), .search-results .hentry:nth-of-type(2n+3) { clear: left; } } /*-------------------------------------------------------------- 7.2 x <= 768px --------------------------------------------------------------*/ @media screen and (min-width: 768px) { /* Layout */ body.archive.category div#content.site-content, body.home div#content.site-content { margin-top: 0px; } .archive .page-header, .search-results .page-header, .unfixed-header.archive:not(.sidebar-open) .page-header, .unfixed-header.archive:not(.sidebar-open) .site-header, .unfixed-header.blog:not(.sidebar-open) .site-header, .unfixed-header.search-results:not(.sidebar-open) .page-header, .unfixed-header.search-results:not(.sidebar-open) .site-header { position: absolute; } .archive .site-footer, .blog .site-footer, .search-results .site-footer { position: inherit; } /* Jetpack */ #infinite-handle:before { -webkit-transform: none; -moz-transform: none; transform: none; } .site-main .infinite-loader { width: 100%; height: 73px; border: 0; border-top: 1px solid #d9d9d9; } .infinite-scroll.neverending .site-main .infinite-loader { height: 49px; } .infinite-scroll.neverending .site-footer { display: none; } .infinity-end.neverending .site-footer { display: block; } } /*-------------------------------------------------------------- 7.3 x <= 1024px --------------------------------------------------------------*/ @media screen and (min-width: 1024px) { /* Content */ .archive .hentry, .blog .hentry, .search-results .hentry { padding-bottom: 33.3333%; width: 33.3333%; } .archive .hentry:nth-of-type(2n+3), .blog .hentry:nth-of-type(2n+3), .search-results .hentry:nth-of-type(2n+3) { clear: none; } .archive .hentry:nth-of-type(3n+4), .blog .hentry:nth-of-type(3n+4), .search-results .hentry:nth-of-type(3n+4) { clear: left; } }Forum: Themes and Templates
In reply to: [Cubic] static header, scoll bar underneathI fixed it myself!! herrah
ignore this…. posted on wrong page
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] use tag [user_nickname}No – i havent… rubbish
Ive added in :
$user_nickname = $user->display_name;
and then also
$admin_message = str_replace(‘[nickname]’, $user_nickname, $admin_message);
$admin_subject = str_replace(‘[nickname]’, $user_nickname, $admin_subject);
$user_message = str_replace(‘[nickname]’, $user_nickname, $user_message);
$user_subject = str_replace(‘[nickname]’, $user_nickname, $user_subject);in their respective places.
Im using the tag [nickname] in the email and its not working. I want the email to show their displayed name
Any help?
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] use tag [user_nickname}Ive fixed it all by myself. Yay
yes I’m using WP super cache now and this seems to be working.
Thank you deepbevel
Forum: Themes and Templates
In reply to: [Cubic] Change width of one pageExcellent. Thank you. I didn’t put a space between the object code and the page id. Now that it’s there it works. Thank you.
Sorry. Just read my post back and it doesn’t make any sense as the code has been removed
I’d like a line break to be added in automatically after an image when an image is added into a post using the ‘add image’ button. At the moment it isn’t clear when the cursor is as it located buttom right of the image and isn’t obvious where it is. Meaning you try and move the cursor about looking for it
Forum: Themes and Templates
In reply to: [Cubic] Change width of one pageive worked out what i need to add to get the page wider:
entry-content {
padding-left: 0;
padding-right: 0;
width: 90%;
}but the problem is that it changes the width across the whole site.
Anyone know how I can just amend this code so that it changes on page on my site?
Forum: Themes and Templates
In reply to: [Cubic] change order of menu / show widget firstYay! Sacredpath it worked – well you knew that, ha ha
Thank you!
ignore me – I didn’t have the right page listed in the settings for where edit page is located. Sorry