designbyjesseR
Forum Replies Created
-
Can you give your website URL so I can take a look? The easiest way in this kind of issue is to inspect the site with Firebug or Google Chromes web developer tool where you can edit the CSS realtime and see the results you could make ??
Forum: Themes and Templates
In reply to: [Customizr] how to change the logoGo to your WordPress dashboard and navigate to:
Appearance -> Theme Options -> Logo Upload
Forum: Themes and Templates
In reply to: [Customizr] multiple pages under home pageYes you can add them from your wordpress dashboard ??
Forum: Themes and Templates
In reply to: [Iconic One] Change link colors?Yes for sure! Insert this command line to your child theme:
a {
color: #yourcolorhere;
}Forum: Themes and Templates
In reply to: [The J A Mortram] Nav Barright now the main nav is inside the footer so you need to cut it out there and put it to the header and this involves some php and html knowledge.
Forum: Themes and Templates
In reply to: Centering widgets in the sidebarcan you give your sites link so I can take a look? ??
Forum: Themes and Templates
In reply to: [zAlive] How do I make changes a child theme?you make the changes to child themes styles.css ??
Forum: Themes and Templates
In reply to: [Responsive] slider on every page & homepageyes exactly that ??
Forum: Themes and Templates
In reply to: [Responsive] slider on every page & homepageI would recommend adding meteor slides to this theme ?? Its quite easy to install and has a ton of nice features etc.
Forum: Themes and Templates
In reply to: Widget moved to right?add this to your custom styles css:
.t-header > .widget {
float: right;
position: static;
}did it work? ??
Forum: Themes and Templates
In reply to: [Highwind] How to make oval picture in header larger?I just checked with google chrome also and it works perfect with that so I guess we can call this a success wooo ?? was nice to help you! ??
Forum: Themes and Templates
In reply to: [Highwind] How to make oval picture in header larger?actually to me your site looks just perfect, the widgets haven’t moved to the bottom they start from the top right side and go down just nicely :-O and in the responsive side everything works well together! what browser are you using I’m using firefox and the site is perfect! ??
Forum: Themes and Templates
In reply to: [Vantage] Text Colour Home Pageyeah at the stylesheet add this one which will turn all paragraphs to white:
p {
color: #FFFFFF;
}did it work out? ??
Forum: Themes and Templates
In reply to: [Highwind] How to make oval picture in header larger?or try the border-radius with this one:
.site-intro .avatar, .highwind-logo {
border-radius: 20px 20px 20px 20px;
}the logo doesn’t get cropped but you got the nice roundness feel in it still ?? ofc this is just my opinion! ??
Forum: Themes and Templates
In reply to: [Highwind] How to make oval picture in header larger?One option would be to change the logo to square one and then it will show in all of its glory because this seems to be the reason what crops the picture ?? by this command:
.site-intro .avatar, .highwind-logo {
border-radius: 0%;
}and if it doesn’t work with a smaller picture it is a bit bigger knot to solve ?? but the site looks great to my eye now very nice lauren! ??