wpuser131
Forum Replies Created
-
Forum: Themes and Templates
In reply to: See the same image when reduce width of browserSo how would you implement the solution you mentioned?
Forum: Themes and Templates
In reply to: See the same image when reduce width of browserActually this is what I was thinking. (Is there any other if you want to keep rensponsiveness?)
Forum: Themes and Templates
In reply to: [Pinnacle] Homepage-Page ContentActually that wasn’t even needed. The problem was that I have a translation of the site in another language, and I hadn’t prepared the homepage for the 2nd language, so it wasn’t accepted to set a static page, except the preview was shown :).
So, resolved in the second post!
Thanks
Forum: Themes and Templates
In reply to: [Pinnacle] Homepage-Page ContentSorry for double post, but I forgot to mention that:
When I use my homepage as Static Page (from Customize) everything looks great in the preview. But When I save and refresh, homepage is totally wrong and different, showing only the latest posts, not showing the title, showing a sidebar despite I have it disabled etc.
Thanks again!
Forum: Plugins
In reply to: using greek letters in wp query**I have checked this one as well but didnt help
sorry for double post.
Forum: Themes and Templates
In reply to: [Arcade Basic] Full page and move search bar?Good Job 🙂
Forum: Themes and Templates
In reply to: [Arcade Basic] Full page and move search bar?Yeap, that’s the css I was talking about, gj.
Cheers
Forum: Themes and Templates
In reply to: [Sela] Remove Dash marks from widget titlesOh ok, I thought this one was another site.
Cool.
Forum: Themes and Templates
In reply to: [Sela] Remove Dash marks from widget titlesIn the example site you pasted, the solution is remove the following:
.widget-title::before, .widget-title::after { content: ""; }Something like that will be the solution for you too. Can’t be more specific without link.
Cheers
Forum: Themes and Templates
In reply to: Using CSS and making logo biggerWell the current image you have set as logo seems to be small:
It seems that it’s a smaller version of the original that is
https://mrsmarconi.files.wordpress.com/2015/06/dustification-logo-light-gold-particles-with-defintion2.png which is large
replace it with a larger one and then:
You have really many .site-logo-link and .site-logo-link img rules. It’s a mess! 😛 Remove all these and add just the two that follow. It must be ok.
.site-logo-link { margin-left: auto; margin-right: auto; transition: all 250ms ease 0s; } .site-logo-link img { height: auto; width: 50%; }Adjust the 50% to the percentage you want, depending on the desirable size.
Forum: Themes and Templates
In reply to: Using CSS and making logo biggerThis code by itself wouldn’t help, its for general case. Your link requires log-in, can’t help more if it’s closed.
Forum: Themes and Templates
In reply to: [Illustratr] How I can align the picture with the text?You have this css rule:
.portfolio-entry .size-full.image-big { margin-left: -130px max-width: 1100px; }Change -130 to 0.
Cheers
Forum: Themes and Templates
In reply to: [Arcade Basic] Full page and move search bar?The first one is adding this to your child theme’s functions.php file.
You can add something like this to completely remove it
function bye_bye_sidebar(){ unregister_sidebar( 'First Sidebar' ); } add_action( 'after_setup_theme', 'bye_bye_sidebar' );or use css to make look removed
Anyway, for better results for your both questions, give us a link.
Cheers
Forum: Themes and Templates
In reply to: Using CSS and making logo biggerIt’s not about resizing the original photo in Photoshop or something (unless your photo is smaller than the desired size). You have to check the css applied in your logo.
Something like this must work
.site-logo { height: auto; max-width: 20%; /* logo will have 20% size of the wrapper div */ min-width: 200px; /* minimum width your logo has as you decrease window size*/ } .site-logo img { height: auto; max-width: 100%; }where your html is
<div class="site-logo"> <img src="directory/of/image.jpg"> </div>A link would be usefull for more specific help
I still don’t get it.
Which branch is taken and shows it duplicated? The 1st or the 2nd?
Can you give a link or a copy paste of the html produced in your browser? Because that seems weird.