pole915
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Glob] Logo to be left of site title and tag lineThanks. i tried to put the code in CSS area at customize, and it works!!
Just wonder why it does not work when i try to put in my child theme…??
Anyway, thanks again
Forum: Themes and Templates
In reply to: [Glob] Logo to be left of site title and tag lineYes it is true as i want to make sure my child theme works.
changed, as below now.
@import url("../glob/style.css"); .site-branding .site-logo { float: left; } .site-branding .site-title { float: left; display: block; clear: none; }
[Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]
- This reply was modified 7 years, 7 months ago by bdbrown.
Forum: Themes and Templates
In reply to: [Glob] Logo to be left of site title and tag linei have copied the above and paste in child theme. But nothing seems have changed. Is there any other way?
Forum: Themes and Templates
In reply to: [Glob] Logo to be left of site title and tag lineForum: Themes and Templates
In reply to: [JustWrite] User main sidebar for posts and pagesHi
Exactly what i am looking for. Thanks.
If i am having a childtheme, i should just add
sidebar-posts.php’s code as below??else { echo ‘<p class=”add-some-widgets”>’ . __( ‘Add some widgets! (Posts Sidebar)’, ‘acosmin’ ) . ‘</p>’; }
<?php if ( is_active_sidebar( ‘posts-sidebar’ ) ) { dynamic_sidebar( ‘posts-sidebar’ ); }
//else { echo ‘<p class=”add-some-widgets”>’ . __( ‘Add some widgets! (Posts Sidebar)’, ‘acosmin’ ) . ‘</p>’; }
else { dynamic_sidebar( ‘main-sidebar’ ); }
?><!– END Sidebar Widgets –>Forum: Themes and Templates
In reply to: [Customizr] Change color of the back to top arrow?Hi
May i know how if i want to change the color using hex code? Thanks.
Besides, i try to put above white color code into Custom CSS plugin and the color remains. Shouldn’t it work?
Forum: Networking WordPress
In reply to: 2 multisites in 1 hosting domain, possible?Actually i am thinking to create 2 series of websites rather than 2 websites.
For example
One series of websites end with domain1.com while another series end with domain2.com?Forum: Themes and Templates
In reply to: Theme Express Curateit seems like working now but i suppose the wrong picture being taken away, when i load older posts, css does not work.
Besides, it does not work with handphone too.
Forum: Themes and Templates
In reply to: Theme Express CurateHi there,
I am not programming guy. I tried to do a childtheme
/*
Theme name: childcuration
Description: child theme
Author: Gordon
Version: 0.1
Template: expresscurate
*/@import url(‘../expresscurate/style.css’);
.blog .fimgContainer{display:none}the pictures are no longer duplicate, but my whole theme is affected…
curation.tedollybeauty.com
Can you please advise? Thanks.Forum: Themes and Templates
In reply to: Theme Express CurateHi there,
Thanks for fast response. My web is as follow:
https://curation.tedollybeauty.com/
It shows double pictures and yet not the featured image. Wondering why…
having the same problem, chrome is able to copy by
highlighting the content and then click ctrl + CAny solution?
Forum: Plugins
In reply to: [Plugin: Paid Memberships Pro] Does this PayPal change effect PMP users?Hi there,
I am having the same concern, anything should we do ?
Forum: Plugins
In reply to: Hacked by malicious codeForum: Themes and Templates
In reply to: media query unable to kick inYes i got it finally. HUHUHUHU
Thanks QXARE.
I am actually don’t know about CSS thing, just following some steps. Found out i miss out sth:
<div id=”primary” class=”content-area childsimone-page”>
Forum: Themes and Templates
In reply to: media query unable to kick inmedia=”all”
@media screen and (max-width: 1539px) and (min-width: 1160px)
.content-area {
float: left;
width: 100%;
margin-left: -380px;
padding-left: 380px;Above the original media screen, i would like to make it become zero, so that the white space for widget area is not seen.
When the media screen is larger or smaller than this, all work well.