Aivaras Zelba
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Sorry for late answer, I will make a fix for this to round price 2 decimals after. Fix will come this week.
Forum: Themes and Templates
In reply to: html and cssForum: Localhost Installs
In reply to: Locked out of localhost installOpen wp-config.php file and add those lines below define(‘WP_Debug’,’false’;);
define('WP_HOME','http://localhost/yoursite-dir'); define('WP_SITEURL','http://localhost/yoursite-dir');Forum: Themes and Templates
In reply to: [Tracks] Background Image does not repeatForum: Themes and Templates
In reply to: [Reddle] Blockquote with Border and Paddingblockquote { color: #777; padding: 10px, 30px, 10px, 30px; (Wrong, remove those ,,,, ) padding: 10px 30px 10px 30px; (Working css). border: 1px solid #8B008B; margin: 0 1.615em; }Forum: Fixing WordPress
In reply to: Trouble removing padding above image sliderTry this
Delete this you wrote before:
.content { padding-top: 0px; }And add this below: (That page with slider must be set as Home page.)
.home .content { padding-top: 0px; }If you need help with home page: (Go to settings -> reading & set the option “Front page displays: a static page” select the page you want displayed as the front/home. )
Forum: Themes and Templates
In reply to: [Sparkling] Images not responsiveCould you give us a source or a link to a website?
You may try to do this. Just paste this code and specify images you want to look good. In mobile resolution all images are 100% width usually.
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) { img { width:100%; } }Ref: Css Tricks
Viewing 7 replies - 1 through 7 (of 7 total)