ceslava
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Marla] widget area backgroundHi @diane4wp,
It´s true that I haven´t made any update but you can still use my theme.
In order to change the background color of widgets from the homepage you can this CSS
home div.anuncioshome { background: #000; /* your color or none for transparent*/ box-shadow: none; /* in case you want get rid of the widget shadow */ }If you need a custom job you can always hire me for that
Best,
Cristian EslavaForum: Themes and Templates
In reply to: [Marla] Images Stretched When pulling in Author ImagesForum: Themes and Templates
In reply to: [Marla] Images Stretched When pulling in Author ImagesHi Ribo,
Thanks for your kind words.
What you say it´s true, my theme resize the images to full width of the page. If you want to prevent this add this code to the Custom CSS
.entry-content avatar img {width:auto}If you want all images to have just its original width you sgould add this code
@media only screen and (min-width: 1070px) { .entry-content img {width:auto}} .entry-content img {width:auto; margin-left: auto;}Let me know if it´s OK now
Best,
ceslavaForum: Themes and Templates
In reply to: Problems with the Marla themeHi again,
You can edit the CSS on the customisation page of my theme there´s one option, the very last at the bottom to do that but.
But what I meant is that if you have added a HTML widget like the twitter and FB with HTML code you can actually insert some inline CSS.
https://en.support.wordpress.com/widgets/text-widget/
About the link to FB you just need the last part: solitarysociety
Regards
Forum: Themes and Templates
In reply to: Problems with the Marla themeHi,
I see the issue. The problem is the facebook widget, you must wrap it on a div and give it a height with CSS so don´t overlap.
<div style="height:350px"> /* your code for the facebook widget </div>Regards
Forum: Themes and Templates
In reply to: [Marla] Mobile view issuesHi,`
You have at the bottom of your CSS Custom codes have some typos
<img style="width:(the real width of the image smaller than 510px)px; margin-left:0"That´s why it doesn´t work
Forum: Themes and Templates
In reply to: [Marla] Mobile view issuesHi tja315,
1. I saw the issue on the first img of this post http://bestlittlenest.com/eat-gestational-diabetes-test/ That image is align to the left, edit the post and set the alignment to none. That´ll fix it.
2. Set the height to auto
#header { height: auto; }Best regards
Forum: Themes and Templates
In reply to: [Marla] Some questions for how to best customize MarlaGlad to hear it Thomas !!! Great !!!
Thanks for your words again.
If you want you can write some review
I really appreciated 😉
Best regards
Forum: Themes and Templates
In reply to: [Marla] Some questions for how to best customize MarlaHi and sorry again,
Let´s see if I finally understood what you need. You want to center the menu with no background surround it.
To accomplish this centered and responsive menu we can use flexbox instead of the old float. We must use some prefixes, so the code will be
#site-navigation ul { display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; float:none; justify-content: center; } @media only screen and (min-width: 777px) #site-navigation { width: 100%;} #site-navigation, #site-navigation ul { background: none; }I hope this is what you need
Regards
Forum: Themes and Templates
In reply to: [Marla] Some questions for how to best customize MarlaHi Thomas,
Sorry if I didn´t understand what you mean.
If you can have a background only when the menu is fixed at the top you can add this
#site-navigation.fixed { background-color: #FFF; }I hope this help
Regards
Forum: Themes and Templates
In reply to: [Marla] How can I change the width of the contentHi kr3t3n,
You have the answer here
https://ww.wp.xz.cn/support/topic/how-to-change-the-width-of-the-post
Regards
Forum: Themes and Templates
In reply to: [Marla] Posts are too smallHi ebanks90,
You have the answer here
https://ww.wp.xz.cn/support/topic/how-to-change-the-width-of-the-post
Regards
Forum: Themes and Templates
In reply to: [Marla] MobileHi diioma,
Sorry for the delay, I guess you manage to solve the 1st issue.
Regarding the 2nd actually there is a sidebar on the homepage, the widgets will look like any post, you can check it on the demo
Thanks for your kind words, if you need anything please let me know
Gracias a ti 😉
Forum: Themes and Templates
In reply to: [Marla] Remove drop shadows from posts and pagesHi,
Try this code on the “custom CSS & Code”
#content, #sidebar { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }Forum: Themes and Templates
In reply to: [Marla] Images not full size in postsHi,
If you not set an alignment your image will be 510px wide as the page/post column
Regards