batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Restaurateur] Slider image sizeThe slider itself is responsive so it depends on the monitor resolution.
The parent element that controls the width is set to 96% of the monitors width, and the slider is set to use 100% of that 96% minus any padding.96% of 1280 width screen = 1228
96% of 1440 width screen = 1382
96% of 1920 width screen = 1843You can set a max-width to the slider with css and set your images accordingly.
Forum: Themes and Templates
In reply to: [Chooko Lite] Plugin TroubleYou should contact your service provider, they can help you get this working if it’s allowed.
Forum: Themes and Templates
In reply to: [Customizr] Removing tags and author from posts in Customizr?This will hide that section and the gap created from hiding it.
Add to the custom css area..entry-meta { display: none; } .featurette-divider { margin: 0 0 30px 0; }If it’s just text you can use the :after selector.
#site-info:after { content: "Copyright blah blah blah"; }If it requires a link, then php file edits are in your future. Since Ever After is already a child theme it’s more difficult, let me know if you NEED a link in there.
Forum: Themes and Templates
In reply to: Adding padding to beginning and end of textA little CSS wil help:
.entry-content { margin: 30px 0 60px 0; }Values are top, right, bottom, left. Adjust to your liking.
EDIT
Forgot to add, use a custom css plugin if your theme does not have space for it already.Forum: Themes and Templates
In reply to: [Blue Planet] customize header css fileYou can download the zip and pull the header.php out to replace on your site.
http://wordpress.org/themes/blue-planetForum: Themes and Templates
In reply to: on-line petitionThis really depends on how in-depth your needs are.
There are simple plug-ins that can do this and there are stand alone but integrated systems that are more powerful but a steeper learning curve.Plugin
http://wordpress.org/plugins/participants-database/CiviCRM
(short presentation)
http://www.slideshare.net/chrischinchilla/civicrm-and-wordpress(main site)
https://civicrm.org/#site-info { display: none; }Forum: Themes and Templates
In reply to: [Theme: Education] Header problemIf you look at the page source that style attribute is added to the <head> section.
That’s usually due to a custom css area in the theme or a plugin.The demo site uses a text widget for the “Meet with the team” content.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Header Image AND TitleYou can set the logo as a background image with css.
If your theme does not have an area for custom css you need to install a css plugin or create a child-theme.
Change the URL to point at your logo..site-branding { background: url("http://s.w.org/about/images/logos/wordpress-logo-notext-rgb.png"); background-repeat: no-repeat; background-size: contain; background-position: 15% 20%; }The other way would mean hacking a core php file and would require a child-theme.
Forum: Themes and Templates
In reply to: How to Add Another Logo Image in GamePress ThemeEasiest way
#header-inner {background: url("http://s.w.org/about/images/logos/wordpress-logo-notext-rgb.png"); background-repeat: no-repeat; background-size: 100px; background-position: 85% 20%; }Forum: Themes and Templates
In reply to: [Portfolio Press] Don't Like My Header. Can You Help ? ….Try it this way
and make sure you refresh the page a couple times/*makes the header background white*/ #branding { background: transparent; } /*add the anniversary image and places it in the header*/ hgroup:after { content: "Celebrating our 30th Year"; color: transparent; background: url('http://s8.postimg.org/r85ebjz79/30th_year_anniversary.png'); /*change to your address after downloading image*/ background-repeat: no-repeat; background-size: contain; height: 104px; /*higher number make image larger*/ position: absolute; top: 22px; /*higher number moves image lower*/ right:220px; /*higher number moves image left*/ } /*hides the nav menu in the header*/ #navigation { display: none; }Forum: Themes and Templates
In reply to: [Portfolio Press] Don't Like My Header. Can You Help ? ….You can get the anniversary image here. Upload it to your server in case this link breaks.
/*makes the header background white*/ #branding { background: #fff; } /*add the anniversary image and places it in the header*/ hgroup:after { content: "Celebrating our 30th Year"; color: transparent; background: url('http://s8.postimg.org/r85ebjz79/30th_year_anniversary.png'); /*change to your address after downloading image*/ background-repeat: no-repeat; background-size: contain; height: 104px; /*higher number make image larger*/ position: absolute; top: 22px; /*higher number moves image lower*/ right:220px; /*higher number moves image left*/ } /*hides the nav menu in the header*/ #navigation { display: none; } /*makes the menu in the sidebar uppercase*/ .widget-container ul li a { text-transform: uppercase; }Forum: Themes and Templates
In reply to: [Theme: zeeTasty] How do I disable sidebar#wrapper { max-width: 100%; width: 100%; } .header-image img { width: 100%; max-width: 100%; } #sidebar > .widget { display: none; } #content { width: 100%; }