batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Blockquote alignment problemForum: Themes and Templates
In reply to: Blockquote alignment problem@media screen and (min-width: 1260px) { .site-content blockquote.alignright { margin-right: 0; }Forum: Themes and Templates
In reply to: [Customizr] Mobile Layout WoocommerceTry this
.coupon .button { margin-bottom: 2px; }Forum: Themes and Templates
In reply to: [Theme: Touchfolio] How to add a Background Image?This page may help
http://dimsemenov.com/themes/touchfolio/installation.htmlForum: Themes and Templates
In reply to: Still see the link and I have deleted itCrate the post again with this title:
Improve your performance with these Adobe Photoshop keyboard shortcuts
My theory is that the database thinks it is not there because you deleted it, even though you did it again it still thinks it is not there.
Forum: Themes and Templates
In reply to: [Duena] Changing Browser Size Changes Site???The default duena stylesheet has the date set to top: 18;
Should be 100 to 110 depending on your liking.
again you can add opacity if desired.
You should change this in the stylesheet mentioned in my post above..post_date { top: 110px; }Forum: Themes and Templates
In reply to: [Duena] Changing Browser Size Changes Site???You can add opacity to it and it will be the same as the post title.
opacity: .3;Forum: Themes and Templates
In reply to: [Duena] Changing Browser Size Changes Site???This CSS file has part of it as display none, it will have to be removed to get the icon to the left of the date to appear.
/custom-theme-for-ohpg/style.css.post_type_label { display: none !important; }Forum: Themes and Templates
In reply to: [Theme: Twenty Fourteen] How to change top menu font size?It will be the same code if it’s the same theme. You may need to refresh the browser a couple times or clear the cache.
There is a plugin called fourteen colors that help with color changes.
Forum: Themes and Templates
In reply to: [Duena] Changing Browser Size Changes Site???The demo site is working the way it was designed. Of course my screen is only 1280px wide, not sure what it looks like on a larger screen. What is it you seem to be losing as the browser gets larger? Maybe post a screen shot?
Forum: Themes and Templates
In reply to: [Travelify] Travelify Theme Home PageThe images for the slider are not part of the theme, it’s there in the demo only to show what it would look like. You have to supply your own images for the slider.
Here’s a good place to learn more about CSS.
http://www.w3schools.com/css/css_intro.aspRequires a few changes but we can do it. There’s 2 ways to do it.
This way will shorten the menu so it’s the same width as the main content and align it left so it lines up the way you want. If you want that remove all the CSS code I gave you earlier and use this instead.#site-navigation { position: fixed; top: 0; width: 960px; margin-top: 0; background: #fff; }The second method leaves it 100% width but adds space between the menu items so about lines up like you want. To do it this way add this to the code I gave you earlier.
.main-navigation li { margin: 0 5.83rem; }For content to raise a little:
#primary { margin-top: 0; }The video does go under the menu on my end.